-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hirnli",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"lint:umlauts": "! grep -rn 'ß' src/ --include='*.ts' --include='*.tsx' | grep -v 'ss statt ß' | grep -v node_modules && echo 'No ß found' || (echo 'ERROR: Found ß (should be ss in Swiss German) in source code' && exit 1)",
"audit": "tsx scripts/audit-pipeline.ts",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"verify": "npm run format:check && npm run lint && npm run lint:umlauts && npm run typecheck && npm run test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"sync-numbers": "npx tsx scripts/sync-org-numbers.ts",
"validate:foundations": "tsx scripts/foundation-validate.ts",
"foundation:add": "tsx scripts/foundation-add.ts",
"esa:download": "tsx scripts/esa-download-and-parse.ts",
"research:foundation": "tsx scripts/foundation-research-assistant.ts",
"research:batch": "tsx scripts/foundation-batch-research.ts",
"screen": "tsx scripts/foundation-screen.ts",
"research:queue": "tsx scripts/foundation-research-queue.ts",
"zhaw:ingest": "tsx scripts/zhaw-ingest.ts",
"pipeline:incremental": "tsx scripts/pipeline-incremental.ts",
"pipeline:graduate": "tsx scripts/pipeline-graduate.ts",
"pipeline:triage": "tsx scripts/ingest-triage.ts",
"pipeline:upsert": "tsx scripts/foundation-upsert.ts",
"zefix:download": "tsx scripts/zefix-download.ts",
"zefix:ingest": "tsx scripts/zefix-ingest.ts",
"enrich:bulk": "tsx scripts/bulk-enrich.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@react-pdf/renderer": "^4.9.0",
"ai-kit": "github:bitbaum/ai-kit#v0.6.2",
"chart.js": "^4.5.1",
"drizzle-orm": "^0.45.1",
"fuse.js": "^7.1.0",
"nanoid": "^6.0.1",
"next": "16.3.3",
"next-intl": "^4.14.1",
"next-themes": "^0.4.6",
"react": "19.2.8",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.8",
"resend": "^6.24.0",
"xlsx": "^0.18.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^26",
"@types/pg": "^8.23.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.9",
"eslint": "^10",
"eslint-config-next": "^16.3.3",
"pg": "^8.23.0",
"prettier": "3.9.6",
"tailwindcss": "^4",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
},
"overrides": {
"eslint-plugin-react-hooks": "7.0.1"
},
"engines": {
"node": ">=20",
"npm": ">=11"
}
}