forked from canvita/jianshudemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "jianshudemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config config/webpack.config.js --env.NODE_ENV=dev",
"build": "webpack --config config/webpack.config.js --env.NODE_ENV=prod",
"build-dev": "webpack --config config/webpack.config.js --env.NODE_ENV=dev",
"dll": "webpack --config config/webpack.dll.config.js",
"http": "node server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"express": "^4.17.1",
"file-loader": "^4.0.0",
"happypack": "^5.0.1",
"html-webpack-include-assets-plugin": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"style-loader": "^0.23.1",
"styled-components": "^4.3.2",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"workbox-webpack-plugin": "^4.3.1"
}
}