-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 KB
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
{
"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",
"dev": "NODE_ENV=development bun run --watch ./src/app.ts",
"start": "bun run ./src/app.ts",
"start:pm2": "pm2 start ecosystem.config.cjs --env production",
"start:prod": "NODE_ENV=production bun run ./src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"module:build": "sh ./src/modules/build.sh",
"gen:gql": "graphql-codegen",
"gen:queries": "bun run ./src/scripts/genQueries.ts",
"local:link": "bun run ./src/scripts/localLink.ts",
"db:push": "bun drizzle-kit push",
"db:generate": "bun drizzle-kit generate",
"db:studio": "bun drizzle-kit studio"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"discord.js": "^14.26.2",
"dotenv-flow": "^4.1.0",
"drizzle-orm": "^0.45.2",
"elysia": "^1.4.28",
"ms": "^2.1.3",
"redis": "^5.11.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.1.1",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/typescript": "^5.0.9",
"@graphql-codegen/typescript-operations": "^5.0.9",
"@graphql-codegen/typescript-resolvers": "^5.1.7",
"@libsql/client": "^0.17.2",
"@types/bun": "^1.3.11",
"@types/dotenv-flow": "^3.3.3",
"@types/ms": "^2.1.0",
"@types/node": "^25.5.2",
"@types/node-rsa": "^1.1.4",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"typescript": "^6.0.2"
}
}