-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.31 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
69
70
71
72
73
74
75
76
77
{
"name": "tagr",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"debug": "next dev --inspect",
"build": "next build",
"start": "node ./.next/standalone/server.js",
"lint": "eslint",
"prisma-studio": "prisma studio",
"docker:local": "APP_VERSION=$(git describe --tags --abbrev=0 | sed 's/^v//') docker compose -f docker-compose.local.yml up --build -d",
"prisma-recreate-db": "rm -rf ./data/tagr.* & prisma db push --config ./prisma.config.ts --force-reset",
"prisma-generate-client": "prisma generate",
"postinstall": "prisma generate",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "5.2.0",
"@libsql/client": "0.17.0",
"@prisma/adapter-libsql": "7.4.0",
"@prisma/client": "7.4.0",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"@tanstack/react-table": "8.21.3",
"@use-gesture/react": "10.3.1",
"axios": "1.13.5",
"bcryptjs": "3.0.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"lucide-react": "0.574.0",
"music-metadata": "11.12.3",
"next": "16.1.7",
"next-auth": "5.0.0-beta.30",
"next-intl": "4.8.3",
"next-themes": "0.4.6",
"node-taglib-sharp": "6.0.1",
"nuqs": "2.8.8",
"radix-ui": "1.4.3",
"react": "19.2.3",
"react-day-picker": "9.13.2",
"react-dom": "19.2.3",
"react-hook-form": "7.72.1",
"react-resizable-panels": "4.6.4",
"react-virtuoso": "4.18.1",
"sonner": "2.0.7",
"tailwind-merge": "3.5.0",
"wavesurfer.js": "7.12.1",
"zod": "4.3.6",
"zustand": "5.0.11"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@tailwindcss/postcss": "4.2.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@trivago/prettier-plugin-sort-imports": "latest",
"@types/node": "20",
"@types/react": "19",
"@types/react-dom": "19",
"dotenv": "17.3.1",
"eslint": "9",
"eslint-config-next": "16.1.6",
"happy-dom": "20.8.9",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"prisma": "7.4.0",
"shadcn": "3.8.5",
"tailwindcss": "4.2.1",
"tw-animate-css": "1.4.0",
"typescript": "5",
"vitest": "4.1.2"
}
}