-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-redux-ssr",
"version": "1.0.0",
"description": "react redux server side render",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:client": "webpack-dev-server --env.NODE_ENV=local --env.mode=development --config buildConfig/webpack.client.js",
"dev:server": "nodemon --watch public --exec node \"./public/server.bundle.js\"",
"build:client": "rm -rf dist/&&webpack --env.NODE_ENV=local --env.mode=production --config buildConfig/webpack.client.js",
"build:server": "webpack --config buildConfig/webpack.server.js --watch",
"start": "node ./public/server.bundle.js",
"lint:js": "eslint --fix --ext .js --ext .jsx src/",
"lint:style": "stylelint stylelint --syntax scss **/*.scss",
"precommit": "lint-staged"
},
"keywords": [
"ssr"
],
"author": "gongyuan",
"license": "ISC",
"lint-staged": {
"src/**/*.{js,jsx}": "eslint",
"src/**/*.scss": "stylelint"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.1",
"connected-react-router": "^6.2.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.6.2",
"ejs-compiled-loader": "^1.1.0",
"express": "^4.16.4",
"history": "^4.7.2",
"http-proxy-middleware": "^0.19.1",
"lodash": "^4.17.15",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-loadable": "^5.5.0",
"react-redux": "^6.0.0",
"react-router-config": "^4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"fstream": "^1.0.12",
"html-webpack-plugin": "^3.2.0",
"isomorphic-style-loader": "^4.0.0",
"js-yaml": "^3.13.1",
"lint-staged": "^8.1.1",
"lodash.mergewith": "^4.6.2",
"mini-css-extract-plugin": "^0.5.0",
"minimatch": "^3.0.4",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"precommit": "^1.2.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"uglify-js": "^3.6.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}