-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "react-redux-webpack-starter",
"version": "1.0.0",
"description": "Starter for using React, Redux and Webpack",
"main": "./src/index.jsx",
"browserslist": [
"> 5% in GB",
"IE 11"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack/webpack.config.js --output-public-path=/dist/ && webpack --watch --display-error-details"
},
"author": "",
"license": "ISC",
"engines": {
"node": "^8.9.2"
},
"dependencies": {
"cross-env": "^5.2.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"redux": "^4.0.0",
"webpack-dev-server": "^3.1.8"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"path": "^0.12.7",
"react-redux": "^5.0.7",
"sass-loader": "^7.1.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
}
}