Promptaid-VIsion / frontend /package.json
SCGR's picture
runtime optimization
1dc6a03
raw
history blame
1.63 kB
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run src/test/unit_tests --reporter=verbose",
"test:unit:watch": "vitest src/test/unit_tests",
"test:unit:coverage": "vitest run src/test/unit_tests --coverage",
"test:integration": "vitest run src/test/integration --reporter=verbose"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"@vitejs/plugin-react-swc": "^3.10.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@ifrc-go/icons": "^2.0.1",
"@ifrc-go/ui": "^1.3.0",
"@types/jszip": "^3.4.0",
"jszip": "^3.10.1",
"lucide-react": "^0.525.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.1",
"vite": "^7.1.3"
}
}