-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 808 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 808 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
{
"name": "boostify",
"version": "1.0.0beta1",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"dev": "tsx --env-file=.env src/index.ts",
"prisma:generate": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.19.39",
"@types/pg": "^8.20.0",
"prisma": "^7.8.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"axios": "^1.16.0",
"chalk": "^4.1.2",
"discord.js": "^14.25.1",
"dotenv": "^17.4.2",
"pg": "^8.20.0",
"tsx": "^4.21.0",
"zod": "^4.4.3"
}
}