-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 931 Bytes
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
{
"name": "viralkan-app",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:migrate": "cd apps/api && bun run db:migrate",
"db:reset": "cd apps/api && bun run db:reset",
"prepare": "husky"
},
"devDependencies": {
"@types/minimatch": "^6.0.0",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.0",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@hono/zod-openapi": "^1.1.0",
"next": "16.0.7",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "19.2.1",
"react-dom": "19.2.1",
"zod": "^4.0.5"
}
}