-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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": "ssr-react-antd",
"version": "1.0.0",
"description": "Server Side Rendering",
"main": "server.js",
"repository": "https://github.com/lk321/ssr-react-antd.git",
"author": "lk321 <orozco6453@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"dev:build-server": "NODE_ENV=development webpack --config webpack.server.js --mode=development -w",
"dev:start": "nodemon ./server-build/index.js",
"dev": "npm-run-all --parallel build dev:*"
},
"dependencies": {
"antd": "^3.11.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"morgan": "^1.9.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-config": "^4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"serialize-javascript": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.11.0",
"nodemon": "^1.18.8",
"npm-run-all": "^4.1.5",
"react-app-rewire-less": "^2.1.3",
"react-app-rewired": "^1.6.2",
"webpack": "4.19.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}