-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
69
70
71
72
73
74
75
76
{
"name": "drm-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:init": "ts-node --transpile-only lib/drizzle/init.ts",
"db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg",
"db:studio": "drizzle-kit studio",
"db:migrate": "ts-node --transpile-only lib/drizzle/migrate.ts",
"db:migrate:run": "npm run db:generate && npm run db:migrate",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.49.1",
"@tanstack/react-query": "^5.67.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"lucide-react": "^0.479.0",
"next": "^15.2.2",
"pg": "^8.14.0",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.19.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.24",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/supertest": "^6.0.2",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-config-next": "^15.2.2",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.6",
"typescript": "^5.4.5"
},
"overrides": {
"react-is": "^19.0.0-rc-69d4b800-20241021"
}
}