-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "recommand-framework",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run server:dev\" \"bun run app:dev\"",
"build": "bun run app:build",
"serve": "bun run server:prod",
"server:dev": "NODE_ENV=development bun run --hot index.ts",
"server:prod": "NODE_ENV=production bun run index.ts",
"db:generate": "drizzle-kit generate",
"app:dev": "NODE_ENV=development vite",
"app:build": "NODE_ENV=production tsc && vite build",
"app:preview": "NODE_ENV=production vite preview",
"init-package": "bun run scripts/init-package.ts",
"rm-package": "bun run scripts/rm-package.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.11.11",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.30.4",
"tsx": "^4.19.3",
"vite": "^6.1.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^2.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/zod-validator": "^0.7.2",
"@radix-ui/react-slot": "^1.1.2",
"@scalar/hono-api-reference": "^0.7.1",
"@tailwindcss/vite": "^4.1.4",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "0.39.3",
"hono": "^4.7.2",
"hono-openapi": "^0.4.6",
"jose": "^6.0.6",
"pg": "^8.13.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ulid": "^2.3.0",
"zod": "^3.24.2",
"zod-openapi": "^4.2.3"
}
}