-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
42
{
"name": "leo-discord-bot",
"version": "1.2.0",
"description": "🤖 A Discord bot named Leo - https://leo.adkynet.eu/",
"main": "dist/index.js",
"scripts": {
"start:dev": "tsc && node dist/index.js",
"start:prod": "node dist/index.js",
"build": "tsc",
"prisma:migrate": "npx prisma migrate dev --name migration",
"prisma:deploy": "npx prisma migrate deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PannH/leo-discord-bot.git"
},
"author": "PannH",
"license": "MIT",
"bugs": {
"url": "https://github.com/PannH/leo-discord-bot/issues"
},
"homepage": "https://github.com/PannH/leo-discord-bot#readme",
"dependencies": {
"@prisma/client": "^4.2.1",
"axios": "^0.27.2",
"discord.js": "^14.2.0",
"dotenv": "^16.0.1",
"hex2rgb": "^2.2.0",
"humanize-duration": "^3.27.2",
"i18next": "^21.9.2",
"uuid": "^9.0.0",
"weather-js": "^2.0.0"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.1",
"@types/node": "^18.7.4",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}