t2-mapper/package.json

69 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2025-09-11 23:48:23 +00:00
{
"name": "t2-mapper",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"type": "module",
2025-12-30 04:02:54 +00:00
"packageManager": "npm@11.7.0",
2025-09-11 23:48:23 +00:00
"scripts": {
"build:manifest": "tsx scripts/generate-manifest.ts -o public/manifest.json",
"build:parser": "peggy TorqueScript.pegjs -o generated/TorqueScript.cjs",
"build": "next build",
2025-09-11 23:56:30 +00:00
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
2025-11-29 17:08:20 +00:00
"format": "prettier --write .",
2025-12-30 04:02:54 +00:00
"lint": "eslint .",
"postbuild": "git checkout -- public/base && touch docs/.nojekyll",
"prebuild": "git checkout -- docs && rimraf public/base && mv docs/base public/",
2025-12-02 06:33:12 +00:00
"serve:static": "tsx scripts/serve-static.ts",
2025-11-29 17:08:20 +00:00
"start": "next dev --turbopack",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
2025-09-11 23:48:23 +00:00
},
"dependencies": {
2025-12-03 00:58:35 +00:00
"@ariakit/react": "^0.4.20",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
2025-12-30 04:02:54 +00:00
"@tanstack/react-query": "^5.90.15",
"ignore": "^7.0.5",
2025-11-26 14:04:45 +00:00
"lodash.orderby": "^4.6.0",
2025-12-03 00:58:35 +00:00
"match-sorter": "^8.2.0",
2025-12-30 04:02:54 +00:00
"next": "^16.1.1",
"nuqs": "^2.8.6",
"picomatch": "^4.0.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
2025-12-30 04:02:54 +00:00
"react-error-boundary": "^6.0.1",
"react-icons": "^5.5.0",
"three": "^0.182.0",
"unzipper": "^0.12.3",
"zustand": "^5.0.9"
2025-09-11 23:48:23 +00:00
},
"devDependencies": {
2025-12-30 04:02:54 +00:00
"@eslint/js": "^9.39.2",
"@types/express": "^5.0.6",
2025-11-26 14:04:45 +00:00
"@types/lodash.orderby": "^4.6.9",
2025-09-11 23:48:23 +00:00
"@types/node": "24.3.1",
"@types/picomatch": "^4.0.2",
"@types/react": "^19.2.7",
"@types/three": "^0.182.0",
2025-09-11 23:48:23 +00:00
"@types/unzipper": "^0.10.11",
2025-12-30 04:02:54 +00:00
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"express": "^5.2.1",
2025-12-30 04:02:54 +00:00
"jiti": "^2.6.1",
2025-09-12 04:08:56 +00:00
"peggy": "^5.0.6",
"prettier": "^3.7.4",
"prettier-plugin-glsl": "^0.2.2",
2025-12-30 04:02:54 +00:00
"puppeteer": "^24.34.0",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "5.9.3",
2025-12-30 04:02:54 +00:00
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
2025-09-11 23:48:23 +00:00
}
}