-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "zylo-interview",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server",
"cron": "node ./bin/cronJob.js",
"db:init": "node ./bin/initDb.js",
"db:wipe": "node ./bin/wipeDb.js",
"db:reset": "npm run db:wipe && npm run db:init",
"db:update": "node ./bin/simulateUpdates.js"
},
"keywords": [],
"author": "Gordon Buhler",
"dependencies": {
"axios": "^0.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"chroma-js": "^1.2.1",
"express": "^4.14.0",
"html-webpack-plugin": "^2.22.0",
"immutable": "^3.8.1",
"moment": "^2.15.1",
"morgan": "^1.7.0",
"node-cron": "^1.1.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"rethinkdb": "^2.3.3",
"socket.io": "^1.4.8",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-dev-server": "^1.16.1",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-config-react-app": "^0.2.1",
"eslint-plugin-flowtype": "^2.18.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"style-loader": "^0.13.1"
}
}