-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.24 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
{
"name": "js-stack-from-scratch",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"browserlist": [
"> 1%"
],
"engines": {
"node": "7.x",
"yarn": "0.20.3"
},
"scripts": {
"start": "yarn dev:start",
"dev:start": "nodemon --ignore lib --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress --host 0.0.0.0",
"prod:build": "rimraf lib && 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": "eslint src && flow && jest --coverage",
"precommit": "yarn test",
"prepush": "yarn test",
"heroku-postbuild": "yarn prod:build"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bootstrap": "4.0.0-alpha.6",
"compression": "^1.6.2",
"express": "^4.15.2",
"immutable": "4.0.0-rc.2",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.2",
"react-hot-loader": "next",
"react-jss": "^5.4.0",
"react-redux": "^5.0.3",
"react-router": "next",
"react-router-dom": "next",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-thunk": "^2.2.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"tether": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.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",
"coveralls": "^2.13.0",
"cross-env": "^3.2.4",
"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.9.4",
"flow-bin": "^0.42.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.6.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}