Implement stores and refills, improve testing

This commit is contained in:
Aerilyn Weber 2026-04-18 12:36:29 +09:00
parent 9f416903ef
commit 5536acd67d
137 changed files with 21218 additions and 221 deletions

View file

@ -10,7 +10,8 @@
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"test": "echo 'no tests yet'"
"test": "vitest run",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"@meshitrack/shared": "*",
@ -23,12 +24,21 @@
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.1",
"@tailwindcss/postcss": "^4.2.0",
"@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",
"@types/node": "^25.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^29.0.1",
"msw": "^2.12.14",
"tailwindcss": "^4.2.0",
"typescript": "^6.0.0"
"typescript": "^6.0.0",
"vitest": "^4.1.2"
}
}