-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "virtualcoffeehacktoberfest",
"version": "2.0.0",
"private": true,
"description": "Virtual Coffee Hacktoberfest Site",
"repository": "https://github.com/Virtual-Coffee/hacktoberfest.git",
"bugs": {
"url": "https://github.com/Virtual-Coffee/hacktoberfest/issues"
},
"homepage": "https://github.com/Virtual-Coffee/hacktoberfest",
"main": "",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@12.3.4",
"scripts": {
"dev": "netlify dev",
"dev:next": "next",
"build": "next build",
"start": "next start",
"auth:generate": "auth generate --config lib/auth.ts --output db/schema/auth.ts --yes && prettier --write db/schema/auth.ts",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"typecheck": "next typegen && tsc --noEmit",
"format": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:fix": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"author": "Dan Ott",
"contributors": [],
"license": "CC-BY-3.0",
"dependencies": {
"@better-auth/drizzle-adapter": "^1.7.2",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@json2csv/formatters": "^7.0.8",
"@json2csv/plainjs": "^7.0.8",
"@netlify/database": "^2.0.1",
"@tailwindcss/forms": "^0.5.11",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-table": "^9.2.4",
"better-auth": "^1.7.2",
"drizzle-orm": "^0.45.2",
"next": "^16.3.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.5.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"auth": "^1.7.2",
"drizzle-kit": "^0.31.10",
"postcss": "^8.5.28",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2"
}
}