-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.91 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
65
{
"name": "react_router_4",
"version": "1.0.0",
"description": "react-router 4 new version test application",
"main": "no",
"scripts": {
"dev": "node src/setup-dev-server.js",
"start": "cross-env NODE_ENV=production node src/server.js",
"build": "rimraf dist && cross-env NODE_ENV=production npm run build:client",
"build:client": "cross-env NODE_ENV=production webpack --config config/webpack.config.client.js"
},
"repository": {
"type": "git",
"url": "git@git.coding.net:wanghes/react_router_4.git"
},
"keywords": [
"babel7-react",
"react-ssr"
],
"author": "wanghes",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"cross-env": "^5.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-frontload": "^1.0.3",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-saga": "^0.16.2"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.6",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"css-loader": "^1.0.1",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"react-hot-loader": "^4.3.12",
"react-loadable": "^5.5.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.10",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.4"
}
}