celeborn/web/package.json
tiny-dust 9392ed492c [CELEBORN-1240][FOLLOWUP] Introduce Husky Configuration to Celeborn Web
### What changes were proposed in this pull request?

Removes the pre-commit of husky.

### Why are the changes needed?

Husky pre-commit is not necessary for git commit. There is contribution guide and CI check for the frontend code style.

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Local test.

Closes #2272 from tiny-dust/fix-husky.

Lead-authored-by: tiny-dust <idioticzhou@foxmail.com>
Co-authored-by: 周顺顺 <idioticzhou@foxmail.com>
Signed-off-by: SteNicholas <programgeek@163.com>
2024-01-30 17:12:06 +08:00

42 lines
1.2 KiB
JSON

{
"name": "ui",
"version": "0.5.0-SNAPSHOT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"naive-ui": "^2.37.3",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"sass": "^1.69.7",
"typescript": "~5.3.0",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
}
}