-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"$schema": "https://json.schemastore.org/package",
"name": "gud-gaming",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "run-s fix:**",
"fix:eslint": "eslint --fix .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.38.0",
"next": "15.1.5",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^22",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/parser": "^8.0.0",
"drizzle-kit": "^0.30.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.5",
"eslint-plugin-readable-tailwind": "^1.8.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"npm-run-all2": "^7.0.1",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.4.5"
}
}