-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "chax-backend",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"bootstrap": "tsx bootstrap/bootstrap.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"@libsql/client": "^0.10.0",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@noble/hashes": "^1.5.0",
"@sendgrid/mail": "^8.1.3",
"@t3-oss/env-nextjs": "^0.11.1",
"ably": "^2.4.0",
"arctic": "^1.9.2",
"bcrypto": "^5.5.2",
"buffer": "^6.0.3",
"dotenv": "^16.4.5",
"hono": "^4.5.11",
"hono-rate-limiter": "^0.4.0",
"jose": "^5.8.0",
"lucia": "^3.2.0",
"nanoid": "^5.0.7",
"next": "14.2.5",
"oslo": "^1.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stream-browserify": "^3.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}