forked from FRONT-END-BOOTCAMP-PLUS-4/room-to-be
-
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) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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": "room-to-be",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node backend/infra/db/prisma/seed.js"
},
"dependencies": {
"@auth/prisma-adapter": "^2.9.1",
"@lottiefiles/react-lottie-player": "^3.6.0",
"@prisma/client": "^6.9.0",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-progress": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-slider": "^1.3.4",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.8",
"@radix-ui/react-toggle-group": "^1.1.9",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.13.7",
"@supabase/supabase-js": "^2.49.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gsap": "^3.13.0",
"lottie-react": "^2.4.1",
"lucide-react": "^0.508.0",
"next": "14.2.16",
"next-auth": "^5.0.0-beta.28",
"prisma": "^6.9.0",
"react": "^18",
"react-dom": "^18",
"react-lottie-player": "^2.1.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.176.0",
"three-spritetext": "^1.9.6",
"uuid": "^11.1.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.177.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.16",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.1.0",
"postcss": "^8",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"prisma": {
"schema": "backend/infra/db/prisma/schema.prisma"
}
}