-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 KB
/
package.json
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
{
"name": "blackjack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npx prisma generate && npx prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"prisma": "npx prisma generate && npx prisma migrate dev",
"docker": "docker-compose up -d",
"test": "vitest"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.1.0",
"@number-flow/react": "^0.5.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.472.0",
"motion": "^11.18.0",
"next": "15.1.5",
"next-themes": "^0.4.4",
"obscenity": "^0.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@prisma/client": "^6.2.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9",
"eslint-config-next": "15.1.5",
"jsdom": "^26.0.0",
"postcss": "^8",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.17",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.3"
}
}