-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"scripts": {
"start": "yarn dev:start",
"dev:wds": "webpack-dev-server --progress",
"dev:start": "nodemon src/server",
"prod:build": "rimraf lib dist && babel src -d lib --ignore .test.js && cross-env NODE_ENV=production webpack -p --progress",
"prod:start": "cross-env NODE_ENV=production pm2 start lib/server && pm2 logs",
"prod:stop": "pm2 delete server",
"ut": "jest --runInBand --forceExit",
"lint": "eslint src/**/*.{js,jsx} webpack.config.babel.js",
"lint-staged": "lint-staged",
"generate": "rc-autocomplete"
},
"git": {
"scripts": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint && yarn flow && yarn prod:build && yarn ut"
}
},
"lint-staged": {
"src/**/*.js": "eslint",
"src/**/*.jsx": "eslint",
"webpack.config.babel.js": "eslint"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-preset-env": "^1.2.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.2.4",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.41.0",
"git-scripts": "^0.2.1",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"nodemon": "^1.11.0",
"pm2": "^2.4.2",
"react-autocomplete-cli": "^0.0.3",
"rimraf": "^2.6.1",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"colors": "^1.1.2",
"compression": "^1.6.2",
"cors": "^2.8.1",
"custom-error-generator": "^7.0.0",
"deasync": "^0.1.9",
"express": "^4.15.2",
"express-jwt": "^5.1.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^7.3.0",
"mongoose": "^4.9.1",
"morgan": "^1.8.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-hot-loader": "next",
"react-jss": "^6.1.1",
"react-modal": "^2.2.4",
"react-redux": "^5.0.3",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-form": "^6.6.1",
"redux-logger": "^2.8.2",
"redux-thunk": "^2.2.0",
"serve-favicon": "^2.4.2"
}
}