12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "private": true,
- "packageManager": "pnpm@8.5.1",
- "scripts": {
- "build": "vite build",
- "dev": "vite --port 3333 --open",
- "lint": "eslint .",
- "typecheck": "vue-tsc --noEmit",
- "preview": "vite preview",
- "test": "vitest",
- "up": "taze major -I",
- "postinstall": "npx simple-git-hooks"
- },
- "dependencies": {
- "@vueuse/core": "^10.1.2",
- "axios": "^1.4.0",
- "element-plus": "^2.3.4",
- "pinia": "^2.1.1",
- "pinia-plugin-persistedstate": "^3.1.0",
- "sass": "^1.62.1",
- "vue": "^3.3.2",
- "vue-router": "^4.2.0"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^0.38.6",
- "@iconify-json/carbon": "^1.1.16",
- "@types/file-saver": "^2.0.5",
- "@types/node": "^18.16.11",
- "@vitejs/plugin-vue": "^4.2.3",
- "@vue-macros/volar": "^0.9.8",
- "@vue/test-utils": "^2.3.2",
- "eslint": "8.39.0",
- "jsdom": "^22.0.0",
- "lint-staged": "^13.2.2",
- "pnpm": "^8.5.1",
- "simple-git-hooks": "^2.8.1",
- "taze": "^0.10.1",
- "typescript": "^5.0.4",
- "unplugin-auto-import": "^0.16.0",
- "unplugin-vue-components": "^0.24.1",
- "unplugin-vue-macros": "^2.1.7",
- "vite": "^4.3.7",
- "vite-plugin-pages": "^0.29.0",
- "vite-plugin-windicss": "^1.9.0",
- "vitest": "^0.31.0",
- "vue-tsc": "^1.6.5",
- "windicss": "^3.5.6"
- },
- "simple-git-hooks": {
- "pre-commit": "pnpm lint-staged"
- },
- "lint-staged": {
- "*": "eslint --fix"
- },
- "eslintConfig": {
- "extends": [
- "@antfu"
- ]
- }
- }
|