-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.87 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
{
"name": "venue-finder",
"version": "1.0.0",
"private": true,
"description": "DRP project, web app to find suitable venues endorsed by other students and access template risk assessments from past events",
"homepage": "https://gitlab.com/drp49/project#readme",
"bugs": {
"url": "https://gitlab.com/drp49/project/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/drp49/project.git"
},
"license": "ISC",
"author": "drp49",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.8",
"@vercel/sdk": "^1.7.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"haversine": "^1.1.1",
"lucide-react": "^0.511.0",
"next": "15.3.2",
"pdf-lib": "^1.17.1",
"pdfmake": "^0.2.20",
"pg": "^8.16.0",
"radix-ui": "^1.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-tag-input": "^6.10.6",
"sass": "^1.89.0",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/haversine": "^1.1.8",
"@types/node": "^20",
"@types/pdfmake": "^0.2.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.5.0",
"dotenv": "^16.5.0",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"jsdom": "^26.1.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.3",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
}
}