-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.6 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
{
"name": "homepage4good",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:setup": "node ./scripts/setup-db.mjs",
"db:scan-gallery": "ts-node --project tsconfig.scripts.json scripts/scan-gallery.ts",
"db:export-data": "ts-node --project tsconfig.scripts.json scripts/export-all-data.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.0.1",
"@orcid/bibtex-parse-js": "^0.0.25",
"@radix-ui/react-alert-dialog": "^1.1.10",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@types/bcrypt": "^5.0.2",
"@types/generate-password": "^1.5.0",
"@uiw/react-amap": "^7.1.4",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^5.6.0",
"fast-xml-parser": "^5.2.5",
"framer-motion": "^12.7.3",
"fs": "^0.0.1-security",
"generate-password": "^1.7.1",
"js-confetti": "^0.12.0",
"lucide-react": "^0.492.0",
"next": "15.3.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.55.0",
"react-masonry-css": "^1.0.16",
"react-select": "^5.10.1",
"sonner": "^2.0.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.5",
"usehooks-ts": "^3.1.1",
"uuid": "^11.1.0",
"yarn": "^1.22.22",
"zod": "^3.24.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@prisma/client": "6.6.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.17.30",
"@types/react": "^19.1.2",
"@types/react-dom": "^19",
"@types/react-select": "^5.0.0",
"@types/sqlite3": "^3.1.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"globals": "^16.0.0",
"postcss": "^8.5.3",
"prisma": "6.6.0",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
}
}