Files
failwell/package.json
Julien Calixte 967018da12 chore: upgrade vite to 8 and related tooling
- vite 5 → 8
- vite-plugin-pwa 0.19 → 1.2 (vite 8 compat confirmed via vite-pwa/vite-plugin-pwa#918)
- @vitejs/plugin-vue 5 → 6
- vitest 1 → 4
- @vitest/browser, @vitest/ui 1 → 4
- workbox-build, workbox-window added as direct deps at ^7.4.0 to satisfy vite-plugin-pwa peer reqs
2026-04-04 14:06:01 +02:00

65 lines
1.9 KiB
JSON

{
"name": "failwell",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p test:types build-only",
"preview": "vite preview",
"test:types": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"test:unit": "vitest",
"test:ui": "vitest --ui",
"test": "pnpm lint && pnpm test:types && pnpm test:unit",
"build-only": "vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"commit": "cz"
},
"dependencies": {
"@openpanel/web": "^1.3.0",
"@vueuse/core": "^10.7.2",
"@vueuse/math": "^10.7.2",
"bulma": "^0.9.4",
"html-to-image": "^1.11.13",
"md5": "^2.3.0",
"nanoid": "^5.1.6",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"suretype": "^3.3.1",
"vue": "^3.5.27",
"vue-diff": "^1.2.4",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.15.0",
"@tsconfig/node18": "^18.2.6",
"@types/jsdom": "^27.0.0",
"@types/md5": "^2.3.6",
"@types/node": "^25.0.10",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/browser": "^4.1.2",
"@vitest/ui": "^4.1.2",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"typescript": "~5.9.3",
"vite": "^8.0.3",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.3",
"webdriverio": "^8.32.2",
"workbox-build": "^7.4.0",
"workbox-window": "^7.4.0"
}
}