-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
35
36
37
38
39
40
41
{
"name": "bangalore",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"db:start": "npx prisma generate && npx prisma db push",
"dev:start": "node dist/index.js",
"start": "npm run db:start && npm run watch:start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"author": "Lorenz",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"common-tags": "^1.8.2",
"consola": "^3.2.3",
"cron": "^2.4.0",
"discord-debug": "^2.1.2",
"discord-html-transcripts": "^3.1.5",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"emoji-regex": "^10.2.1",
"express": "^4.18.2",
"ms": "^2.1.3"
},
"devDependencies": {
"@prisma/client": "^5.1.1",
"@types/common-tags": "^1.8.1",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.17",
"@types/ms": "^0.7.31",
"prisma": "^5.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
}
}