-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.59 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pizzadeliveryapp",
"version": "0.1.0",
"private": true,
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"dependencies": {
"@babel/polyfill": "7.4.3",
"chalk": "2.4.2",
"classnames": "^2.2.6",
"connected-react-router": "6.4.0",
"cross-env": "5.2.0",
"express": "4.16.4",
"http-proxy-middleware": "0.18.0",
"intersection-observer": "^0.10.0",
"ip": "1.1.5",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"minimist": "1.2.3",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-alice-carousel": "^1.19.3",
"react-dom": "^16.13.1",
"react-hook-form": "^5.7.2",
"react-intersection-observer": "^8.26.2",
"react-payment-inputs": "^1.1.7",
"react-portal": "^4.2.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.7.16",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "4.0.0",
"resolve-url-loader": "2.3.0",
"styled-components": "^5.2.0",
"superagent": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.3",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"add-asset-html-webpack-plugin": "3.1.3",
"autoprefixer": "^9.8.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-react-intl": "3.0.1",
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"circular-dependency-plugin": "5.0.2",
"compression": "^1.7.4",
"compression-webpack-plugin": "2.0.0",
"css-loader": "2.1.1",
"cssnano": "^4.1.10",
"file-loader": "3.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "4.6.0",
"imports-loader": "0.8.0",
"ngrok": "3.1.1",
"null-loader": "0.1.1",
"offline-plugin": "5.0.6",
"postcss-loader": "2.1.6",
"react-app-polyfill": "0.2.2",
"rimraf": "2.6.3",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "0.23.1",
"svg-url-loader": "2.3.2",
"terser-webpack-plugin": "1.2.3",
"url-loader": "1.1.2",
"webpack": "^4.44.1",
"webpack-cli": "3.3.0",
"webpack-dev-middleware": "3.6.2",
"webpack-hot-middleware": "2.24.3",
"webpack-pwa-manifest": "4.0.0"
},
"scripts": {
"prebuild": "npm run build:clean",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.babel.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rimraf ./build",
"start": "cross-env NODE_ENV=development node server",
"start:tunnel": "cross-env NODE_ENV=development ENABLE_TUNNEL=true node server",
"start:production": "npm run build && npm run start:prod",
"start:prod": "cross-env NODE_ENV=production node server"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}