mirror of
https://github.com/btouchard/ackify-ce.git
synced 2026-01-13 01:10:04 -06:00
Remove glob and rimraf from overrides to use versions compatible with nyc@15. This accepts deprecated warnings for glob@7 and rimraf@3, but ensures @cypress/code-coverage works correctly for E2E test coverage. Keep inflight override to eliminate that specific warning.
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "webapp",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"lint:i18n": "node scripts/check-i18n.js",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"cypress:open": "cypress open",
|
|
"cypress:run": "cypress run",
|
|
"cypress:headless": "cypress run --headless",
|
|
"test:e2e": "cypress run --headless",
|
|
"test:e2e:open": "cypress open"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.12.2",
|
|
"lucide-vue-next": "^0.546.0",
|
|
"pinia": "^3.0.3",
|
|
"radix-vue": "^1.9.17",
|
|
"vue": "^3.5.22",
|
|
"vue-i18n": "^11.1.12",
|
|
"vue-router": "^4.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/code-coverage": "^3.14.7",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/postcss": "^4.1.14",
|
|
"@types/node": "^24.6.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vitest/coverage-v8": "^4.0.13",
|
|
"@vitest/ui": "^4.0.13",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"autoprefixer": "^10.4.21",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cypress": "^15.5.0",
|
|
"happy-dom": "^20.0.10",
|
|
"istanbul-lib-coverage": "^3.2.2",
|
|
"jsdom": "^27.2.0",
|
|
"nyc": "^17.1.0",
|
|
"patch-package": "^8.0.1",
|
|
"postcss": "^8.5.6",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^4.1.14",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "~5.9.3",
|
|
"vite": "^7.1.7",
|
|
"vite-plugin-istanbul": "^7.2.1",
|
|
"vitest": "^4.0.13",
|
|
"vue-tsc": "^3.1.0"
|
|
},
|
|
"overrides": {
|
|
"inflight": "npm:noop-package@1.0.0"
|
|
}
|
|
}
|