-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ancient-rome",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && cp dist/index.html dist/404.html",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"validate": "tsx scripts/validate-data.ts",
"generate:dare": "tsx scripts/generate-dare-layers.ts",
"ingest:battles": "tsx scripts/ingest-battles.ts",
"ingest:amphitheaters": "tsx scripts/ingest-amphitheaters.ts",
"enrich:wiki:entities": "tsx scripts/enrich-wikipedia-from-urls.ts",
"enrich:wiki:pleiades": "tsx scripts/enrich-wikipedia-from-pleiades.ts",
"enrich:wiki:fuzzy": "tsx scripts/enrich-wikipedia-fuzzy.ts",
"enrich:wiki:extra": "tsx scripts/enrich-wikipedia-extra.ts",
"enrich:wiki": "tsx scripts/enrich-wikipedia-all.ts",
"enrich:crossref": "tsx scripts/enrich-cross-reference.ts",
"enrich:wikidata": "tsx scripts/enrich-wikidata-structured.ts",
"rescore:wiki": "tsx scripts/rescore-roman-relevance.ts",
"validate:wiki": "tsx scripts/validate-wiki.ts",
"build-data": "bash scripts/build-data.sh"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/playfair-display": "^5.2.8",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"fuse.js": "^7.1.0",
"leaflet": "^1.9.4",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.0.0",
"react-router-dom": "^7.13.1",
"shadcn": "^4.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@turf/along": "^7.3.4",
"@turf/boolean-point-in-polygon": "^7.3.4",
"@turf/helpers": "^7.3.4",
"@turf/length": "^7.3.4",
"@types/d3": "^7.4.3",
"@types/leaflet": "^1.9.21",
"@types/node": "^24.12.0",
"@types/proj4": "^2.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"proj4": "^2.20.4",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"xlsx": "^0.18.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npx tsc -b || (echo '\u2717 pre-push: type errors \u2014 fix before pushing (this gate exists because 3 broken pushes reached CI on 2026-07-06)' && exit 1)"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
],
"src/data/**/*.json": [
"npm run validate"
]
}
}