-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1003 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1003 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
{
"name": "sentinel",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only --poll ./src/index.ts",
"build": "tsc --build",
"deploy:commands": "node deploy-commands",
"start": "npm run clean && npm run build && node build/index.js",
"setup": "npm install && npm run build && node deploy-commands.js && npm run start",
"start:bot": "npm run deploy:commands && npm run start",
"clean": "del /s /q build"
},
"author": "Sbleit",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.9.1",
"discord.js": "^14.14.1",
"dotenv": "^16.4.4",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/node-cron": "^3.0.11",
"nodemon": "^3.0.3",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}