forked from bzurkow/3D_Tron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "TRON",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha ./tests/**/*.js --watch --compilers js:babel-register",
"start": "webpack -w & nodemon server/index.js",
"build": "webpack",
"build-watch": "webpack -w",
"seed": "node server/db/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.2",
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cannon": "github:schteppe/cannon.js",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"cookie-session": "^2.0.0-alpha.2",
"express": "^4.14.0",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"materialize-css": "^0.97.8",
"mathjs": "^3.9.0",
"morgan": "^1.7.0",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.0",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"sequelize": "^3.26.0",
"socket.io": "^1.7.2",
"swearjar": "^0.1.3",
"three": "^0.82.1",
"three.js": "^0.77.1",
"volleyball": "^1.4.1",
"webpack": "^1.13.3",
"whitestormjs": "^0.11.2",
"whs": "^1.2.6"
},
"devDependencies": {
"babel-register": "^6.18.0",
"chai": "3.4.1",
"enzyme": "^2.7.1",
"mocha": "^2.3.3",
"react-addons-test-utils": "^15.4.0",
"redux-devtools-extension": "^1.0.0",
"sinon": "^1.17.7",
"supertest": "^1.1.0",
"supertest-as-promised": "^3.1.0"
}
}