-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.2 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
{
"name": "hobbyhoops",
"version": "2.1.0",
"private": true,
"engines": {
"node": ">=24 <25"
},
"scripts": {
"predev": "node scripts/check-node.mjs",
"dev": "next dev --webpack",
"prebuild": "node scripts/check-node.mjs",
"build": "next build --webpack",
"typecheck": "tsc --noEmit",
"prestart": "node scripts/check-node.mjs",
"start": "next start",
"lint": "eslint",
"lint:md": "markdownlint-cli2",
"audit:ci": "npm audit --audit-level=high --omit=dev",
"ci": "node scripts/ci.mjs",
"ci:full": "node scripts/ci.mjs --with-audit",
"check": "npm run ci",
"test": "vitest run",
"db:migrate": "node scripts/migrate-db.mjs",
"clean": "node scripts/clean.mjs",
"optimize:logo": "node scripts/optimize-logo.mjs",
"generate:icons": "node scripts/generate-pwa-icons.mjs",
"prepare": "husky",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx}": "eslint --fix",
"*.md": "markdownlint-cli2 --fix"
},
"dependencies": {
"@base-ui/react": "^1.8.0",
"@tanstack/react-table": "^9.1.2",
"better-sqlite3": "^13.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^7.0.2",
"lucide-react": "^1.42.0",
"next": "16.3.4",
"pino": "^10.3.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"recharts": "^3.10.1",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.0.2",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19",
"eslint": "^10.10.0",
"eslint-config-next": "16.3.4",
"husky": "^9.1.7",
"lint-staged": "^17.5.0",
"markdownlint-cli2": "^0.23.2",
"semantic-release": "^25.0.9",
"tailwindcss": "^4",
"typescript": "~6.0.3",
"vitest": "^5.0.0"
},
"overrides": {
"nanoid": "^3.3.18",
"postcss": "8.5.23"
}
}