-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 KB
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
{
"name": "react-boiler-plate",
"version": "1.0.0",
"description": "React got reloading stack with redux and router",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:development": "cross-env NODE_ENV=development node ./server.js",
"build:production": "cross-env NODE_ENV=production webpack -p --progress"
},
"author": "ayushkhanduri@gmail.com",
"license": "ISC",
"dependencies": {
"antd": "^3.21.4",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"redux-logger": "^3.0.6",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}