-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 971 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 971 Bytes
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
{
"name": "holes_server",
"version": "0.0.1",
"description": "starts up a new holes server",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"prod": "pm2 start ecosystem.config.js --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolyPixels/Holes_server.git"
},
"keywords": [
"server",
"game",
"node",
"js"
],
"author": "polypixel",
"license": "ISC",
"bugs": {
"url": "https://github.com/PolyPixels/Holes_server/issues"
},
"homepage": "https://github.com/PolyPixels/Holes_server#readme",
"dependencies": {
"alea": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"holes_server": "file:",
"nodemon": "^3.1.7",
"simplex-noise": "^4.0.3",
"socket.io": "^4.8.1"
},
"devDependencies": {
"pm2": "^6.0.5"
}
}