thread-master/apps/web/package.json

34 lines
817 B
JSON
Raw Permalink Normal View History

2026-07-09 03:45:28 +00:00
{
"name": "@harbor/web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2026-07-10 05:10:31 +00:00
"dev": "vite --host 0.0.0.0",
2026-07-09 03:45:28 +00:00
"build": "tsc -b && vite build",
"lint": "oxlint",
2026-07-15 15:23:59 +00:00
"test": "vitest run",
"test:unit": "vitest run",
2026-07-10 05:10:31 +00:00
"preview": "vite preview --host 0.0.0.0"
2026-07-09 03:45:28 +00:00
},
"dependencies": {
"react": "^19.2.7",
2026-07-10 05:10:31 +00:00
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1",
"taipei-sans-tc": "^0.1.1"
2026-07-09 03:45:28 +00:00
},
"devDependencies": {
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
2026-07-15 15:23:59 +00:00
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
2026-07-09 03:45:28 +00:00
"@vitejs/plugin-react": "^6.0.3",
2026-07-15 15:23:59 +00:00
"jsdom": "^26.1.0",
2026-07-09 03:45:28 +00:00
"oxlint": "^1.71.0",
"typescript": "~6.0.2",
2026-07-15 15:23:59 +00:00
"vite": "^8.1.1",
"vitest": "^3.2.4"
2026-07-09 03:45:28 +00:00
}
}