-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.28 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
{
"name": "idea-map",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "concurrently -k -n api,web -c cyan,green \"tsx watch server/index.ts\" \"vite --host 0.0.0.0\"",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist-server/index.js",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.server.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"ai:eval": "tsx server/ai-corpus.ts",
"ai:publication": "tsx server/ai-publication-smoke.ts",
"release:rehearse-v2": "tsx server/v2-release-rehearsal.ts",
"backup:dev": "tsx server/backup.ts",
"backup": "node dist-server/backup.js",
"privacy:dev": "tsx server/privacy-ops.ts",
"privacy": "node dist-server/privacy-ops.js",
"claim-proof:dev": "tsx server/claim-proof-response.ts",
"claim-proof": "node dist-server/claim-proof-response.js",
"corpus:audit": "tsx server/corpus-audit.ts",
"check": "npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/space-grotesk": "^5.2.8",
"@mozilla/readability": "^0.6.0",
"better-sqlite3": "^12.4.1",
"compression": "^1.8.1",
"express": "^5.2.1",
"helmet": "^8.1.0",
"ipaddr.js": "^2.2.0",
"jose": "^6.2.8",
"jsdom": "^27.2.0",
"lucide-react": "^0.468.0",
"maplibre-gl": "^5.15.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"topojson-client": "^3.1.0",
"world-atlas": "^2.0.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/better-sqlite3": "^7.6.13",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"supertest": "^7.1.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.15"
}
}