-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.91 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
88
89
90
91
92
93
94
95
96
{
"name": "university-library",
"version": "0.2.1",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"overrides": {
"brace-expansion@1.1.12": "1.1.17",
"esbuild": "$esbuild",
"next": {
"sharp": "0.35.0"
},
"postcss": "$postcss",
"picomatch@2.3.1": "2.3.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:integration": "vitest run lib/admin/security-transactions.integration.test.ts",
"test:watch": "vitest",
"seed:reset": "tsx scripts/reset-and-seed.ts",
"user:delete": "tsx scripts/delete-user-by-email.ts",
"admin-requests:purge": "tsx scripts/purge-admin-request-history.ts",
"signup-decisions:purge": "tsx scripts/purge-signup-status-decisions.ts",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hookform/resolvers": "^5.6.0",
"@imagekit/next": "^2.1.5",
"@radix-ui/react-alert-dialog": "^1.1.23",
"@radix-ui/react-avatar": "^1.2.6",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-progress": "^1.1.16",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-tooltip": "^1.2.16",
"@sentry/nextjs": "^10.69.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-query-devtools": "^5.101.4",
"@upstash/qstash": "^2.11.3",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.1",
"@upstash/workflow": "^1.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^7.0.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.28.0",
"next": "16.2.12",
"next-auth": "5.0.0-beta.32",
"pg": "^8.22.0",
"react": "19.2.8",
"react-colorful": "^5.8.0",
"react-dom": "19.2.8",
"react-hook-form": "^7.84.0",
"recharts": "^3.10.1",
"resend": "^6.18.1",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/node": "^26.1.2",
"@types/pg": "^8.20.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"drizzle-kit": "^0.31.10",
"esbuild": "0.28.1",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-tailwindcss": "^3.18.3",
"postcss": "8.5.25",
"prettier": "^3.9.6",
"tailwindcss": "^3.4.19",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}