49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "my-website",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.ts,.tsx --fix",
|
|
"lint:check": "eslint . --ext .vue,.js,.jsx,.ts,.tsx",
|
|
"prepare": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{vue,js,ts,jsx,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "^13.3.0",
|
|
"axios": "^1.9.0",
|
|
"pinia": "^2.1.7",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/axios": "^0.9.36",
|
|
"@typescript-eslint/eslint-plugin": "^8.33.1",
|
|
"@typescript-eslint/parser": "^8.33.1",
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
"@vue/eslint-config-typescript": "^14.5.0",
|
|
"@vue/tsconfig": "^0.7.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"eslint": "^9.28.0",
|
|
"eslint-plugin-vue": "^10.2.0",
|
|
"husky": "^8.0.0",
|
|
"less": "^4.3.0",
|
|
"less-loader": "^12.3.0",
|
|
"lint-staged": "^16.1.0",
|
|
"postcss": "^8.4.24",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^4.4.9",
|
|
"vite-plugin-image-optimizer": "^1.1.8",
|
|
"vue-tsc": "^2.2.8"
|
|
}
|
|
}
|