-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 3.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "buildpipeline",
"version": "2.0.0",
"description": "AWS-powered serverless build, test and deploy pipeline ft. multiple environments",
"license": "MIT",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"build": "rimraf dist && cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json webpack --config ./webpack.prod.config.ts --progress --profile --colors",
"prod": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"lint": "tslint --type-check --project tsconfig.json || exit 0",
"analyze-dev": "rimraf stats.json && cross-env TS_NODE_PROJECT=tsconfig-webpack.json webpack --config webpack.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"analyze-prod": "rimraf stats.json && cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json webpack --config webpack.prod.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/jch254/buildpipeline"
},
"author": "Jordan Hornblow <jordan@jch254.com>",
"dependencies": {
"connected-react-router": "^6.8.0",
"history": "^5.0.0",
"moment": "^2.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.0.0",
"react-loading": "^2.0.3",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"rebass": "2.3.4",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"styled-components": "3.4.10"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^6.0.0",
"@types/history": "^4.7.6",
"@types/html-webpack-plugin": "^3.2.3",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^14.0.14",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/terser-webpack-plugin": "^3.0.0",
"@types/webpack": "^4.41.18",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-env": "^1.15.2",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.6",
"html-webpack-plugin": "^3.2.0",
"inline-manifest-webpack-plugin": "^4.0.2",
"map.prototype.tojson": "^0.1.3",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-loader": "^3.5.4",
"tsutils": "^3.17.1",
"typescript": "^3.9.6",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-chunk-hash": "^0.6.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}