-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.99 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
{
"name": "boardhouse-node",
"version": "1.0.0",
"description": "A full-stack environment for the boardhouse game framework.",
"main": "index.js",
"scripts": {
"start": "cd dist && node lobby.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-lobby && npm run build-game",
"build-client": "npm run build-lobby-client && npm run build-game-client",
"build-server": "npm run build-lobby-server && npm run build-game-server",
"build-lobby": "npm run build-lobby-server && npm run build-lobby-client",
"build-game": "npm run build-game-server && npm run build-game-client",
"build-lobby-server": "webpack --config config/webpack-lobby-server.config.js",
"build-lobby-client": "webpack --config config/webpack-lobby-client.config.js",
"build-game-server": "webpack --config config/webpack-game-server.config.js",
"build-game-client": "webpack --config config/webpack-game-client.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjwall/boardhouse-node.git"
},
"author": "Jacob Wallace",
"license": "ISC",
"bugs": {
"url": "https://github.com/jjwall/boardhouse-node/issues"
},
"homepage": "https://github.com/jjwall/boardhouse-node#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.1",
"@types/node": "^12.7.12",
"@types/three": "^0.146.0",
"@types/ws": "^6.0.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"child_process": "^1.0.2",
"copy-webpack-plugin": "^6.0.3",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"ts-loader": "^6.2.0",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"express": "^4.17.1",
"three": "0.146.0",
"ws": "^7.5.0"
}
}