-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "park-commonbase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"backfill-uploadthing": "tsx scripts/backfill-uploadthing.ts",
"test-uploadthing": "tsx scripts/test-uploadthing.ts",
"migrate-to-supabase": "tsx scripts/migrate-to-supabase.ts",
"test-supabase": "tsx scripts/test-supabase-connection.ts",
"generate-schema": "tsx scripts/generate-schema.ts"
},
"dependencies": {
"@prisma/client": "^6.16.2",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/d3": "^7.4.3",
"@types/js-cookie": "^3.0.6",
"@types/multer": "^2.0.0",
"@types/pg": "^8.15.5",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^10.0.0",
"@uploadthing/react": "^7.3.3",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^12.4.1",
"csv-parser": "^3.2.0",
"d3": "^7.9.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.544.0",
"multer": "^2.0.2",
"next": "15.5.3",
"openai": "^5.22.0",
"papaparse": "^5.5.3",
"pg": "^8.16.3",
"prisma": "^6.16.2",
"qrcode": "^1.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"umap-js": "^1.4.0",
"uploadthing": "^7.7.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/node-fetch": "^2.6.13",
"@types/papaparse": "^5.3.16",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.2",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"node-fetch": "^3.3.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"typescript": "^5"
}
}