-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "discord-bot",
"version": "1.5.2",
"scripts": {
"run": "tsc && node ./dist/src/index.js",
"commands:update": "rimraf ./dist && tsc && node ./dist/scripts/registerCommands.js",
"test": "echo \"Error: no test specified\" && exit 1",
"paths": "resolve-tspaths --out \"dist\"",
"start": "resolve-tspaths --out \"dist\" && node --inspect=0.0.0.0:9229 dist/src/index.js",
"dev": "tsc-watch -p ./tsconfig.json --onSuccess \"npm run start\" --onFailure \"echo WHOOPS! Server compilation failed\""
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node-schedule": "^2.1.0",
"axios": "^1.3.6",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"haversine-distance": "^1.2.1",
"mongoose": "^7.1.0",
"node-html-markdown": "^1.3.0",
"node-schedule": "^2.1.1",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"resolve-tspaths": "^0.8.17",
"tsc-watch": "^6.0.4"
}
}