-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.22 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": "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",
"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 <[email protected]>",
"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.6.14"
},
"devDependencies": {
"eslint-config-standard": "^16.0.3",
"nodemon": "^2.0.13",
"standard": "^16.0.3"
}
}