-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
53
{
"name": "websockets-arcade",
"version": "1.0.0",
"description": "Ever wanted a multiplayer arcade cabinet experience, but with your phone as a controller?",
"main": "index.js",
"scripts": {
"start": "node index.js",
"healthcheck": "node healthcheck.js",
"dev": "nodemon --inspect ./index.js",
"test": "standard"
},
"eslintConfig": {
"extends": "standard",
"env": {
"browser": true,
"node": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdmiralPotato/websockets-arcade.git"
},
"keywords": [
"websockets",
"game",
"multiplayer",
"arcade"
],
"author": "Admiral Potato <admiral@nuclearpixel.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdmiralPotato/websockets-arcade/issues"
},
"homepage": "https://github.com/AdmiralPotato/websockets-arcade#readme",
"engines": {
"node": ">=14.x"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"gl-matrix": "^3.3.0",
"morgan": "^1.10.0",
"nipplejs": "^0.9.0",
"point-in-polygon": "^1.1.0",
"socket.io": "^4.2.0",
"vue": "^2.7.16"
},
"devDependencies": {
"eslint-config-standard": "^16.0.3",
"nodemon": "^3.1.10",
"standard": "^16.0.3"
}
}