36 lines
814 B
JSON
36 lines
814 B
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"watch": "vite build --watch",
|
|
"type-check": "vue-tsc --build --force",
|
|
"lint": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.7",
|
|
"bulma": "^1.0.2",
|
|
"font-awesome": "^4.7.0",
|
|
"vue": "^3.5.12",
|
|
"vue-router": "^4.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.2.0",
|
|
"@vue/eslint-config-prettier": "^10.1.0",
|
|
"@vue/eslint-config-typescript": "^14.1.3",
|
|
"@vue/tsconfig": "^0.6.0",
|
|
"eslint": "^9.14.0",
|
|
"eslint-plugin-vue": "^9.31.0",
|
|
"prettier": "^3.3.3",
|
|
"typescript": "^5.6.3",
|
|
"vite": "^5.4.11",
|
|
"vue-tsc": "^2.1.10"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"arrowParens": "avoid"
|
|
}
|
|
}
|