-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.6 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
{
"name": "@edsim/react-frontend",
"private": true,
"version": "0.1.0",
"description": "Professional React + Three.js 3D floor plan renderer for the EDSim emergency department simulator (Issue #15, Phase 1: Map parser & 3D floor plan).",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview --port 4173 --strictPort",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"view-map": "vite --open",
"generate-assets": "node scripts/generate-assets.mjs"
},
"dependencies": {
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.183.2",
"troika-three-text": "^0.52.4"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}