2026-03-27 14:50:34 +09:00
|
|
|
{
|
|
|
|
|
"name": "@meshitrack/web",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev --port 3000 --turbopack",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "eslint src",
|
|
|
|
|
"lint-fix": "eslint src --fix",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
2026-04-18 12:36:29 +09:00
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:cov": "vitest run --coverage"
|
2026-03-27 14:50:34 +09:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@meshitrack/shared": "*",
|
|
|
|
|
"next": "^16.2.0",
|
|
|
|
|
"next-auth": "^5.0.0-beta.30",
|
|
|
|
|
"react": "^19.2.0",
|
|
|
|
|
"react-dom": "^19.2.0",
|
2026-05-14 18:57:57 +09:00
|
|
|
"recharts": "^3.8.1",
|
2026-03-27 14:50:34 +09:00
|
|
|
"swr": "^2.3.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@next/eslint-plugin-next": "^16.2.1",
|
|
|
|
|
"@tailwindcss/postcss": "^4.2.0",
|
2026-04-18 12:36:29 +09:00
|
|
|
"@testing-library/dom": "^10.4.1",
|
|
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
|
|
|
|
"@testing-library/user-event": "^14.6.1",
|
2026-03-27 14:50:34 +09:00
|
|
|
"@types/node": "^25.0.0",
|
|
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
2026-04-18 12:36:29 +09:00
|
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
|
|
|
"@vitest/coverage-v8": "^4.1.2",
|
2026-03-27 14:50:34 +09:00
|
|
|
"eslint-plugin-react": "^7.37.5",
|
|
|
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
2026-04-18 12:36:29 +09:00
|
|
|
"jsdom": "^29.0.1",
|
|
|
|
|
"msw": "^2.12.14",
|
2026-03-27 14:50:34 +09:00
|
|
|
"tailwindcss": "^4.2.0",
|
2026-04-18 12:36:29 +09:00
|
|
|
"typescript": "^6.0.0",
|
|
|
|
|
"vitest": "^4.1.2"
|
2026-03-27 14:50:34 +09:00
|
|
|
}
|
|
|
|
|
}
|