-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "karaoke-match",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:db": "docker run --name karaoke-match-libsql -p 8080:8080 -ti -e SQLD_NODE=primary ghcr.io/tursodatabase/libsql-server:latest",
"dev:prepare": "bun run db:dev:push && bun run db:dev:seed",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:dev:push": "bun --env-file=.env.local drizzle-kit push",
"db:dev:seed": "bun run scripts/seed.ts",
"db:gen": "bun x drizzle-kit generate",
"db:migrate": "bun run scripts/migrate.ts",
"upgrade-interactive": "bunx npm-check-updates --format group -i",
"prepare": "husky"
},
"dependencies": {
"@libsql/client": "^0.10.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@react-spring/web": "^9.7.5",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-query-devtools": "^5.62.0",
"@use-gesture/react": "^10.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.33.0",
"lucide-react": "^0.439.0",
"next": "14.2.8",
"next-themes": "^0.3.0",
"nextleton": "^0.6.1",
"nuqs": "^1.19.1",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.3.5",
"remeda": "^2.17.4",
"resend": "^4.0.1",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^1.0.38",
"zod": "^3.23.8"
},
"devDependencies": {
"@karl-run/prettier-config": "1.0.1",
"@tanstack/eslint-plugin-query": "^5.61.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ua-parser-js": "^0.7.39",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "14.2.8",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.4.1",
"tailwindcss": "^3.4.15",
"typescript": "^5"
},
"lint-staged": {
"*.{md,html,css,json,graphql,graphqls}": "prettier --write",
"*.{ts,tsx}": "eslint --fix --max-warnings=0"
},
"prettier": "@karl-run/prettier-config"
}