t2-mapper/package.json
2025-11-29 09:08:20 -08:00

49 lines
1.4 KiB
JSON

{
"name": "t2-mapper",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build:parser": "peggy mission.pegjs -o generated/mission.cjs",
"build": "next build && touch docs/.nojekyll",
"clean": "rimraf .next",
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
"format": "prettier --write .",
"postbuild": "git checkout -- public/base",
"prebuild": "npm run clean && git checkout -- docs && rimraf public/base && mv docs/base public/",
"start": "next dev --turbopack",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.3.0",
"@react-three/postprocessing": "^3.0.4",
"@tanstack/react-query": "^5.90.8",
"lodash.orderby": "^4.6.0",
"next": "^15.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"three": "^0.180.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/lodash.orderby": "^4.6.9",
"@types/node": "24.3.1",
"@types/react": "^19.2.4",
"@types/three": "^0.180.0",
"@types/unzipper": "^0.10.11",
"peggy": "^5.0.6",
"prettier": "^3.7.1",
"rimraf": "^6.0.1",
"tsx": "^4.20.5",
"typescript": "5.9.2",
"vitest": "^4.0.14"
}
}