-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 KB
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
{
"name": "IFD-unit-tests",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.7.1",
"prop-types": "15.5.8",
"eslint": "3.8.1",
"eslint-config-google": "^0.7.1",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-react": "6.4.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"redux-devtools": "^3.3.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.0"
},
"dependencies": {
"babel": "^6.23.0",
"body-parser": "^1.17.1",
"connected-react-router": "^4.1.0",
"express": "^4.15.2",
"game_lobby_server": "^1.0.7",
"history": "^4.6.1",
"node-uuid": "^1.4.8",
"plugin": "^0.3.3",
"react": "~15.4.2",
"react-dom": "~15.4.2",
"react-redux": "^5.0.3",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.0.1",
"websocket": "^1.0.24"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "npm run lint & npm run test-lint & mocha",
"test-watch": "mocha --watch",
"start": "webpack-dev-server --open --config webpack.config.js",
"start-server": "game_lobby_server --delay=1000 --failure-percentage=30",
"lint": "eslint src/",
"test-lint": "eslint src/test",
"test-debug": "mocha --inspect --debug-brk",
"pretest": "npm run lint"
}
}