-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "codelink",
"module": "src/app.ts",
"type": "module",
"scripts": {
"start": "bun run src/app.ts",
"dev": "bun run --watch src/app.ts",
"lint": "eslint . --ext .ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/zod-validator": "^0.7.2",
"@libsql/client": "^0.15.15",
"@prisma/adapter-libsql": "^6.16.1",
"@prisma/client": "^6.16.1",
"argon2": "^0.44.0",
"hono": "^4.9.7",
"hono-rate-limiter": "^0.4.2",
"ioredis": "^5.7.0",
"jose": "^6.1.0",
"pino": "^9.9.5",
"pino-pretty": "^13.1.1",
"prisma": "^6.16.1",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"ulid": "^3.0.1",
"zod": "^4.1.8"
}
}