-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
{
"name": "rankovo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "next dev --inspect",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier . --write",
"tsc": "tsc --pretty --noEmit",
"check": "bun run lint && bun run tsc",
"check-updates": "npx npm-check-updates -u",
"upgrade-nextjs": "next upgrade",
"//// DATABASE": "/////////////////////////",
"db:push": "bun scripts/db-cmd-guard.ts \"npx drizzle-kit push\"",
"db:generate": "bun scripts/db-cmd-guard.ts \"npx drizzle-kit generate\"",
"db:migrate": "bun scripts/db-cmd-guard.ts \"npx drizzle-kit migrate\"",
"db:s": "bun scripts/db-cmd-guard.ts \"npx drizzle-kit studio --verbose\"",
"db:seed": "bun scripts/db-cmd-guard.ts \"bun ./src/db/seed.ts\"",
"db:auth-generate": "bun scripts/db-cmd-guard.ts \"npx @better-auth/cli generate --config ./src/lib/auth-server.ts\"",
"db:backup": "bun scripts/db-backup.ts",
"db:restore": "bun scripts/db-restore.ts"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@vercel/analytics": "^1.6.1",
"better-auth": "^1.4.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"lucide-react": "^0.562.0",
"next": "16.1.4",
"postgres": "^3.4.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.4",
"eslint-config-prettier": "^10.1.8",
"postcss": "^8",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.17",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3"
}
}