-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1005 Bytes
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
{
"name": "pokemon-hunt",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.6.5",
"description": "Location-based AR creature scavenger hunt (open-source 8th Wall + Three.js + Vite + TS).",
"scripts": {
"dev": "vite --host",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 3000",
"typecheck": "tsc --noEmit",
"convert-models": "node scripts/convert-models.mjs",
"fetch-pokemon": "node scripts/fetch-pokemon.mjs"
},
"dependencies": {
"leaflet": "^1.9.4",
"react": "^19.0.5",
"react-dom": "^19.0.5",
"react-router-dom": "^7.14.2",
"three": "^0.183.0"
},
"devDependencies": {
"@robertlong/fbx2gltf": "^0.11.0",
"@types/leaflet": "^1.9.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.0",
"@vitejs/plugin-react": "^4",
"sass": "^1.99.0",
"typescript": "^5.4.0",
"vite": "^5.4.0"
}
}