-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "your-project",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "yarn dev:start",
"dev:start": "nodemon -e js,jsx --ignore dist --ignore lib --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress",
"prod:build": "rimraf lib && babel src -d lib --ignore .test.js",
"prod:start": "NODE_ENV=production pm2 start lib/server && pm2 logs",
"prod:stop": "pm2 delete server",
"lint": "eslint src webpack.config.babel.js --ext .js,.jsx",
"test": "eslint src && flow && jest --coverage",
"precommit": "yarn test",
"prepush": "yarn test && yarn prod:build"
},
"browserslist": [
"> 1%"
],
"dependencies": {
"babel-polyfill": "^6.23.0",
"common-tags": "^1.4.0",
"compression": "^1.6.2",
"express": "^4.15.2",
"immutable": "4.0.0-rc.2",
"isomorphic-fetch": "^2.2.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-actions": "^2.0.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-flow-react-proptypes": "^2.1.3",
"babel-preset-env": "^1.2.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-compat": "^1.0.2",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"fetch-mock": "^5.11.0",
"flow-bin": "^0.42.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"pm2": "^2.4.4",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}