-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "comics-mar",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "12.x"
},
"dependencies": {
"core-js": "3",
"ejs": "^2.6.2",
"express": "^4.17.1",
"history": "^4.7.2",
"humps": "^2.0.1",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.1",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-form": "^8.2.3",
"superagent": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"file-loader": "^4.0.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2",
"webpack-manifest-plugin": "^2.0.4"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build:server": "webpack --config webpack.server.js",
"heroku-prebuild": "yarn install --production=false --dev && yarn build && yarn build:server"
},
"browserslist": [
"defaults"
]
}