-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.78 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.78 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
78
79
80
81
82
83
84
85
86
87
{
"name": "university-library",
"version": "0.2.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "tsx database/seed.ts",
"db:migrate-csv": "tsx database/migrate-from-csv.ts",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"verify-stats": "tsx scripts/verify-stats.ts",
"verify-borrow": "tsx scripts/verify-borrow-details.ts",
"fix-borrow-sync": "tsx scripts/fix-borrow-sync.ts",
"fix-overcorrection": "tsx scripts/fix-overcorrection.ts",
"find-missing-borrow": "tsx scripts/find-missing-borrow.ts",
"check-all-books": "tsx scripts/check-all-books.ts",
"fix-coding-interview": "tsx scripts/fix-coding-interview.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@noble/hashes": "^1.8.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.87.4",
"@tanstack/react-query-devtools": "^5.87.4",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.35.3",
"@upstash/workflow": "^0.2.4",
"argon2-browser": "^1.18.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.2",
"imagekit": "^6.0.0",
"imagekitio-next": "^1.0.1",
"lucide-react": "^0.469.0",
"next": "^15.5.9",
"next-auth": "^5.0.0-beta.25",
"pg": "^8.16.3",
"react": "^19.2.3",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.3",
"react-hook-form": "^7.54.2",
"recharts": "^3.2.0",
"resend": "^6.0.3",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.4",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5"
}
}