-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "tankanarchy",
"version": "3.0.0",
"description": "A multiplayer tank battle arena game",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node dist/server.js",
"watch": "nodemon --experimental-specifier-resolution=node dist/server.js",
"pm2": "PORT=5001 pm2 start dist/server.js --name tankanarchy --node-args='--experimental-specifier-resolution-node'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/penumbragames/tankanarchy.git"
},
"author": "Alvin Lin (omgimanerd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/penumbragames/tankanarchy/issues"
},
"homepage": "https://github.com/penumbragames/tankanarchy#readme",
"dependencies": {
"express": "^4.17.0",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"socket.io-parser": "^4.2.1",
"ts-node": "^10.9.1",
"@types/del": "^4.0.0",
"@types/express": "^4.17.14",
"@types/gulp": "^4.0.10",
"@types/morgan": "^1.9.3",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"browserify": "^17.0.0",
"del": "^7.0.0",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-cssnano": "^2.1.3",
"gulp-less": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"less": "^3.9.0",
"prettier": "^2.8.0",
"tsify": "^5.0.4",
"typescript": "^4.9.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}