-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "discord-daily-bot",
"version": "0.0.6",
"description": "Discord bot for weekly daily",
"main": "out/index.js",
"repository": "git@github.com:jboucly/discord-daily-bot.git",
"author": "jboucly <julien.boucly@outlook.com>",
"license": "MIT",
"private": false,
"engines": {
"node": "18.15.0"
},
"scripts": {
"watch": "nodemon",
"start": "node out/index.js",
"build": "rimraf out && tsc",
"deploy": "yarn build && node out/deploy-commands.js",
"prettier": "prettier --config ./.prettierrc --check \"src/**/*.ts\"",
"prettier:fix": "prettier --config ./.prettierrc --write \"src/**/*.ts\"",
"prisma": "prisma",
"db:generate": "prisma generate",
"db:deploy": "prisma migrate deploy",
"db:format": "prisma format",
"db:migrate:reset": "prisma migrate reset",
"db:studio": "prisma studio",
"db:validate": "prisma validate",
"db:migrate:create": "prisma migrate dev --create-only",
"db:migrate:dev": "prisma migrate dev"
},
"dependencies": {
"@prisma/client": "5.4.1",
"cron": "^2.4.0",
"cronstrue": "^2.32.0",
"date-fns": "^2.29.3",
"discord.js": "14.13.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"node-cron": "^3.0.2",
"node-fetch": "2.6.1",
"prettier": "^3.0.3",
"prisma": "^5.4.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/express": "^4.17.18",
"@types/lodash": "^4.14.191",
"@types/node-cron": "^3.0.7",
"@types/node-fetch": "^2.6.6",
"nodemon": "^2.0.20"
}
}