-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 972 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 972 Bytes
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
{
"name": "resto1",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.20.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck"
},
"dependencies": {
"@supabase/supabase-js": "^2.78.0",
"@tanstack/react-query": "^5.90.21",
"clsx": "^2.1.1",
"framer-motion": "^12.35.1",
"lucide-react": "^0.577.0",
"next": "^15.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "8.57.1",
"eslint-config-next": "^15.5.4",
"postcss": "^8.5.6",
"tailwindcss": "3.4.17",
"typescript": "^5"
}
}