-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "covid-table-game-simulator",
"version": "4.0.0",
"engines": {
"node": ">=11.0.0"
},
"description": "An HTML5 multiplayer game based on Lance",
"main": "src/main.js",
"dependencies": {
"@babel/node": "^7.2.2",
"babel-loader": "^8.0.5",
"express": "^4.14.0",
"lance-gg": "^4.0.3",
"lodash": "^4.17.15",
"pixi.js": "^5.2.1",
"query-string": "^4.2.3",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"eslint": "^6.8.0",
"eslint-config-google": "^0.7.1",
"prettier": "^2.0.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"start": "node dist-server/main.js",
"start-debug": "node --inspect-brk dist-server/main.js",
"start-dev": "nodemon dist-server/main.js",
"postinstall": "webpack && babel src --source-maps --out-dir dist-server",
"build": "webpack && babel src --source-maps --out-dir dist-server",
"stats": "webpack --env production --profile --json > stats.json",
"dev": "webpack --watch",
"lint": "prettier src --check && eslint src"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"game",
"lance",
"lance-gg",
"multiplayer",
"websockets"
],
"author": "",
"license": "Apache-2.0"
}