-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "webpack-react-ssr",
"version": "1.0.0",
"description": "webpack构建react同构项目",
"scripts": {
"start": "nodemon --watch app --watch index.js --watch webpack.config.js index.js",
"build": "cross-env NODE_ENV=production webpack",
"start-prod": "cross-env NODE_ENV=production node index.js",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"dependencies": {
"chalk": "^2.3.0",
"express": "^4.16.2",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"require-from-string": "^2.0.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.3.0",
"eslint-config-egg": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"url-loader": "^0.6.2",
"file-loader": "^0.11.2",
"glob-all": "^3.1.0",
"html-loader": "^0.5.1",
"html-webpack-externals-plugin": "^3.6.0",
"html-webpack-inline-source-plugin": "0.0.9",
"html-webpack-plugin": "^2.30.1",
"md5": "^2.2.1",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"postcss-loader": "^2.0.8",
"postcss-sprites": "^4.2.1",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-chunk-hash": "^0.5.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-node-externals": "^1.6.0",
"webpack-tool": "^2.1.2",
"zip-webpack-plugin": "^2.0.0"
},
"author": "[email protected]",
"license": "ISC"
}