-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.4 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": "redux-workshop",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"classnames": "^2.2.5",
"express": "^4.16.2",
"lodash": "4.17.10",
"mongoose": "^4.13.6",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"reactstrap": "^5.0.0-beta.3",
"redux": "^4.0.0",
"redux-pack": "0.1.5",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.3",
"morgan": "^1.9.0",
"nodemon": "^1.12.5",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1"
},
"scripts": {
"start": "react-scripts start",
"server": "run-p server:build server:start",
"server:build":
"babel --presets=es2015,stage-0,react ./src/server --out-dir ./lib/server --watch",
"server:start": "nodemon ./lib/server/index.js --watch 'lib/server/**/*.*'",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"proxy": {
"/api": {
"target": "http://localhost:8000"
}
}
}