-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "yuuko",
"type": "module",
"version": "1.0.0",
"description": "A bot that goes through your anilist and recommends you anime and manga.",
"author": "Yuuko Devs",
"license": "MIT",
"keywords": [
"anilist",
"manga",
"anime",
"suggest"
],
"main": "src/app.js",
"scripts": {
"api": "bun run ./src/api.ts",
"start": "pm2 start ecosystem.config.cjs --env production",
"dev": "NODE_ENV=development bun run --define self=undefined --watch ./src/app.ts",
"start:prod": "NODE_ENV=production bun run --define self=undefined ./src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"gen:gql": "graphql-codegen",
"gen:queries": "bun run ./src/scripts/genQueries.ts",
"db:push:main": "bun drizzle-kit push:sqlite",
"db:push:stats": " bun drizzle-kit push:sqlite --config=drizzle.stats.config.ts",
"db:generate:main": "bun drizzle-kit generate:sqlite",
"db:generate:stats": "bun drizzle-kit generate:sqlite --config=drizzle.stats.config.ts",
"db:push": "bun run db:push:main && bun run db:push:stats",
"db:generate": "bun run db:generate:main && bun run db:generate:stats",
"db:studio": "bun drizzle-kit studio"
},
"dependencies": {
"@acegoal07/discordjs-pagination": "^1.5.9",
"@discordjs/rest": "^2.4.0",
"@elysiajs/cors": "^1.1.1",
"@libsql/client": "^0.14.0",
"@types/bun": "^1.1.12",
"@types/dotenv-flow": "^3.3.3",
"@types/ms": "^0.7.34",
"@types/node-rsa": "^1.1.4",
"@upstash/redis": "^1.34.3",
"bun-types": "^1.1.33",
"colors": "^1.4.0",
"discord.js": "^14.16.3",
"dotenv-flow": "^4.1.0",
"drizzle-kit": "^0.26.2",
"drizzle-orm": "^0.35.3",
"elysia": "^1.1.23",
"humanize-duration": "^3.32.1",
"jimp": "^1.6.0",
"ms": "^2.1.3",
"redis": "^4.7.0",
"winston": "^3.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.0",
"@graphql-codegen/typescript-operations": "^4.3.0",
"@graphql-codegen/typescript-resolvers": "^4.3.0",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^22.8.1",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"typescript": "^5.6.3"
}
}