-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.38 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
{
"name": "modern-stack",
"version": "1.0.0",
"description": "A living modern bootstrapped frontend stack.",
"main": "index.js",
"repository": "git@github.com:SebastianPlace/modern-stack.git",
"author": "Sebastian Place <sebplace94@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn dev:start",
"dev:start": "nodemon -e js,jsx --ignore lib --ignore dist --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress",
"heroku-postbuild": "yarn prod:build",
"prod:build": "rimraf lib dist && babel src -d lib --ignore .test.js && cross-env NODE_ENV=production webpack -p --progress",
"prod:start": "heroku local",
"lint": "eslint src webpack.config.babel.js --ext .js,.jsx",
"test": "yarn lint && flow && jest --coverage",
"precommit": "yarn test",
"prepush": "yarn test && yarn prod:build"
},
"browserslist": [
"> 1%"
],
"engines": {
"node": "7.x",
"yarn": "0.27.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-flow-react-proptypes": "^5.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-compat": "^1.0.4",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"fetch-mock": "^5.12.2",
"flow-bin": "^0.50.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"color": "^2.0.0",
"compression": "^1.7.0",
"express": "^4.15.4",
"immutable": "4.0.0-rc.2",
"isomorphic-fetch": "^2.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-hot-loader": "next",
"react-jss": "^7.1.0",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3"
}
}