-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "nextjs_tut",
"version": "0.1.0",
"private": true,
"scripts": {
"kill3000": "kill -9 $(lsof -ti :3000) 2>/dev/null || true",
"dev": "npm run kill3000 && next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"push": "drizzle-kit push:pg",
"pull": "drizzle-kit introspect:pg ",
"generate": "drizzle-kit generate:pg",
"drop": "drizzle-kit drop",
"check": "drizzle-kit check:pg",
"up": "drizzle-kit up:pg"
},
"packageManager": "npm@10.9.2",
"overrides": {
"react": "$react",
"react-dom": "$react-dom"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/typography": "^0.5.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.44.1",
"lucide-react": "^0.511.0",
"mapbox-gl": "^3.12.0",
"next": "15.3.2",
"next-auth": "^5.0.0-beta.28",
"next-qrcode": "^2.5.1",
"postgres": "^3.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}