-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "babpi",
"version": "1.0.0",
"description": "Use a Raspberry Pi to track your football table games.",
"main": "webpack.config.js",
"dependencies": {
"debug": "^3.1.0",
"express": "^4.16.2",
"fast-json-patch": "^2.0.6",
"meow": "^4.0.0",
"moment": "^2.20.1",
"redux": "^3.7.2",
"redux-debug": "^1.0.3",
"socket.io": "^1.4.5",
"ts-trueskill": "^1.4.18"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"bootstrap-less": "^3.3.8",
"css-loader": "^0.28.9",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.2.2",
"webpack": "^3.10.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"style-loader": "^0.20.1",
"webpack-dev-middleware": "^2.0.4"
},
"scripts": {
"test": "jest",
"server": "node server.js",
"build": "webpack",
"watch": "webpack --watch"
},
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=0.12"
},
"nodemonConfig": {
"ignore": [
"src/scoreboard",
"src/client",
"node_modules",
"less",
"public",
"hardware"
]
}
}