-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) 路 2.56 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) 路 2.56 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
77
78
79
80
81
82
83
{
"name": "staz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check",
"db:reset": "tsx src/db/resetDb.ts"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@number-flow/react": "^0.4.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-query": "^5.62.7",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"badge": "^1.0.3",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.37.0",
"drizzle-zod": "^0.5.1",
"lucide-react": "^0.467.0",
"motion": "^11.13.1",
"nanoid": "^5.0.9",
"next": "15.4.8",
"next-auth": "5.0.0-beta.30",
"next-themes": "^0.4.3",
"postgres": "^3.4.5",
"react": "19.0.1",
"react-beautiful-dnd": "^13.1.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "19.0.1",
"react-error-boundary": "^4.1.2",
"react-intersection-observer": "^9.13.1",
"react-spring": "^9.7.4",
"sonner": "^1.7.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.23.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.62.1",
"@types/node": "^20",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"drizzle-kit": "^0.29.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"engines": {
"node": ">=18.0.0"
}
}