37 lines
807 B
JSON
37 lines
807 B
JSON
{
|
|
"name": "home",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint-staged": "lint-staged"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.4.19"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^2.6.4",
|
|
"@iconify-json/ant-design": "^1.1.15",
|
|
"@unocss/eslint-plugin": "^0.58.5",
|
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-format": "^0.1.0",
|
|
"lint-staged": "^15.2.2",
|
|
"sass": "^1.70.0",
|
|
"unocss": "^0.58.5",
|
|
"unplugin-vue-components": "^0.26.0",
|
|
"vite": "^5.1.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,vue,jsx,tsx}": [
|
|
"eslint . --fix",
|
|
"eslint ."
|
|
]
|
|
}
|
|
}
|