Files
failwell/package.json
Julien Calixte 2a0c2fdbb8 chore: fix sass deprecation warnings and upgrade vite to 5.4
- Upgrade vite from 5.1.3 to 5.4.21 to support modern sass API option
- Configure sass preprocessor with api: 'modern' to silence legacy-js-api warning
- Silence bulma-sourced deprecation warnings (import, global-builtin, color-functions, if-function)
2026-04-04 13:53:59 +02:00

63 lines
1.8 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": "^5.0.4",
"@vitest/browser": "^1.3.0",
"@vitest/ui": "^1.3.0",
"@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": "^5.4.21",
"vite-plugin-pwa": "^0.19.0",
"vitest": "^1.3.0",
"vue-tsc": "^3.2.3",
"webdriverio": "^8.32.2"
}
}