-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "game-machine",
"main": "build/index.html",
"scripts": {
"build": "webpack",
"rebuild": "npm run clean && webpack",
"clean": "rm -r ./build",
"start": "nw .",
"dev": "webpack && concurrently --raw --kill-others \"webpack --watch --display=errors-only\" \"nw .\""
},
"repository": {
"type": "git",
"url": "https://github.com/physiii/GameMachine"
},
"window": {
"kiosk": true
},
"chromium-args": "--allow-file-access-from-files --allow-file-access --user-data-dir",
"private": true,
"dependencies": {
"babel-plugin-react-css-modules": "^3.4.2",
"bindings": "^1.3.0",
"byline": "^5.0.0",
"css-loader": "^1.0.0",
"debounce": "^1.2.0",
"events": "^3.0.0",
"mini-css-extract-plugin": "^0.4.3",
"mongodb": "^2.2.1",
"normalize-css": "^2.3.1",
"nw": "0.43.6-sdk",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"resolve-cwd": "^3.0.0",
"rimraf": "^2.5.3",
"serialport": "^9.0.2",
"socket.io": "^3.0.3",
"socket.io-client": "^3.0.3",
"util": "^0.11.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"concurrently": "^4.0.1",
"exports-loader": "^0.7.0",
"html-webpack-plugin": "^3.2.0",
"nw-gyp": "^3.6.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
}
}