forked from bzurkow/3D_Tron
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "TRON",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha ./tests/**/*.js --watch --compilers js:babel-register",
"start": "node server/index.js",
"start-watch": "webpack -w & nodemon server/index.js",
"build": "webpack",
"build-watch": "webpack -w",
"seed": "node server/db/seed.js",
"postinstall": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"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",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"express": "^4.14.0",
"mathjs": "^3.9.0",
"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-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"socket.io": "^1.7.2",
"swearjar": "^0.1.3",
"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",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.4.0",
"sinon": "^1.17.7",
"supertest": "^1.1.0",
"supertest-as-promised": "^3.1.0"
}
}