-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 902 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 902 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
{
"name": "deathrun",
"version": "0.0.1",
"description": "",
"author": "Loule",
"main": "src/index.js",
"scripts": {
"tsc": "tsc",
"start": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"prod": "tsc && pm2 start --no-daemon dist/index.js",
"dist": "node dist/index.js"
},
"dependencies": {
"@ngrok/ngrok": "^1.4.1",
"axios": "^1.7.7",
"cors": "^2.8.5",
"discord-webhook-node": "^1.1.8",
"dotenv": "^8.6.0",
"express": "^4.21.1",
"mongodb": "^6.9.0",
"socket.io": "^3.1.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^14.18.63",
"@types/sha1": "^1.1.5",
"@types/socket.io": "^2.1.13",
"@types/uuid": "^8.3.4",
"pm2": "^4.5.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.9.5"
}
}