This commit is contained in:
2026-08-11 21:09:32 +07:00
parent e63c8f61aa
commit 94c0c47fd0
44 changed files with 5215 additions and 71 deletions
+45
View File
@@ -0,0 +1,45 @@
{
"name": "aplp.frontend.react",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -b --noEmit",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.90.20",
"axios": "^1.13.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router-dom": "^7.14.3",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.16",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"jsdom": "^27.2.0",
"oxlint": "^1.75.0",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.16",
"typescript": "~6.0.2",
"vite": "^8.2.0",
"vitest": "^4.0.14"
}
}