-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
129 lines (129 loc) · 3.76 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "3ree-monopoly-deal",
"version": "1.0.0",
"description": "A WIP POC to test the 3REE (React - Redux - Rethinkdb - Express) stack",
"main": "server.babel.js",
"scripts": {
"build:prod": "NODE_ENV=production webpack",
"db:setup": "node dbSetup.babel.js",
"lint": "eslint client server universal test stories .storybook server.js dbSetup.js",
"lint:fix": "npm run lint -- --fix",
"check": "npm run lint && npm run flow",
"start": "NODE_ENV=development webpack-dashboard -- node start-dev.js",
"start:prod": "NODE_ENV=production node server.babel.js",
"test": "jest --forceExit",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook -s ./static -o .out",
"deploy-storybook": "storybook-to-ghpages"
},
"pre-push": [
"check",
"test"
],
"keywords": [
"react",
"3ree",
"rethinkdb",
"redux",
"webpack",
"monopoly"
],
"license": "MIT",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.6"
},
"jest": {
"verbose": true
},
"dependencies": {
"audio-loader": "^0.6.0",
"audio-play": "^2.1.0",
"axios": "^0.15.3",
"body-parser": "1.14.x",
"classnames": "2.2.x",
"compression": "^1.6.2",
"config": "1.19.x",
"ejs": "2.5.5",
"express": "4.13.x",
"history": "1.13.x",
"lodash": "^4.16.6",
"moment": "2.11.x",
"nib": "^1.1.x",
"node-uuid": "1.4.x",
"react": "15.0.x",
"react-bootstrap": "^0.30.6",
"react-dom": "15.0.x",
"react-modal": "^1.6.4",
"react-redux": "5.0.x",
"react-router": "2.4.x",
"react-router-redux": "4.0.x",
"redux": "3.5.x",
"redux-localstorage": "^0.4.1",
"redux-logger": "2.6.x",
"redux-thunk": "2.1.x",
"remote-redux-devtools": "^0.4.8",
"reselect": "^2.5.4",
"rethinkdb": "2.3.x",
"serve-static": "1.10.x",
"socket.io": "1.5.x",
"socket.io-client": "1.5.x",
"string-replace-to-array": "^1.0.1",
"superagent": "1.8.x",
"thinky": "^2.3.6",
"xss": "0.2.x"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-deployer": "^1.2.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.21.0",
"babel-eslint": "^6.0.0-beta.6",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"babel-template": "^6.15.0",
"babel-types": "^6.20.0",
"chokidar": "^1.6.1",
"css-loader": "0.23.x",
"enzyme": "^2.7.0",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-jsx": "^3.0.0",
"eslint-config-standard-react": "^4.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "1.0.x",
"flow-bin": "^0.37.4",
"jest": "^18.1.0",
"nock": "8.0.x",
"node-libs-browser": "1.0.x",
"phantomjs-prebuilt": "2.1.x",
"pre-push": "^0.1.1",
"raw-loader": "0.5.x",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "1.3.x",
"react-transform-hmr": "1.0.x",
"redux-mock-store": "1.0.x",
"storyshots": "^3.2.1",
"style-loader": "0.13.x",
"stylus": "0.54.x",
"stylus-loader": "2.0.x",
"webpack": "1.13.x",
"webpack-dashboard": "^0.3.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.13.2"
}
}