-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"author": "Hartanto Thio",
"name": "react-starter",
"version": "0.1.0",
"description": "",
"main": "public/dist/index.js",
"license": "MIT",
"moduleRoots": [
"./",
"node_modules",
"src/client"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel-node ./src/server/serve.dev.js",
"build:prod": "NODE_ENV=production webpack --config ./src/server/configs/webpack.config.babel.js",
"start:prod": "NODE_ENV=production node ./src/server/serve.prod.js",
"prod": "npm-run-all build:prod start:prod"
},
"dependencies": {
"compression": "^1.7.2",
"express": "^4.16.3",
"history": "^4.7.2",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.8.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"npm-run-all": "^4.1.3",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"react-dev-utils": "^5.0.1",
"react-error-overlay": "^4.0.0",
"react-hot-loader": "^4.2.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.2"
}
}