-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 816 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
{
"name": "sample-web-server",
"version": "1.0.0",
"description": "Sample web server.",
"keywords": [
"roblox",
"erringpaladin10",
"tricky3685",
"superdude123456",
"vtil",
"vtilserver"
],
"license": "MIT",
"author": "ErringPaladin10@VTILServer.com",
"type": "module",
"main": "serverHost.js",
"scripts": {
"start": "nodemon serverHost.js",
"node-start": "node serverHost.js",
"pm2-start": "pm2 start serverHost.js --name \"sample-web-server\"",
"pm2-stop": "pm2 stop \"sample-web-server\"",
"pm2-restart": "pm2 restart \"sample-web-server\"",
"pm2-status": "pm2 status \"sample-web-server\""
},
"dependencies": {
"body-parser": "^2.2.2",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"nodemon": "^3.1.11",
"pm2": "^6.0.14"
}
}