-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "hrs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:check": "drizzle-kit check",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio --verbose"
},
"dependencies": {
"@hono/swagger-ui": "^0.2.2",
"@hono/zod-openapi": "^0.14.5",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@nextui-org/react": "^2.4.2",
"@node-rs/argon2": "^1.8.3",
"@oslojs/crypto": "^0.2.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"framer-motion": "^11.2.11",
"hono": "^4.4.7",
"lucia": "^3.2.0",
"next": "14.2.4",
"nodemailer": "^6.9.14",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@scalar/hono-api-reference": "^0.5.77",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/pg": "^8.11.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.22.7",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.15.7",
"typescript": "^5"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}