2024-11-02 18:16:32 +00:00
|
|
|
{
|
|
|
|
"name": "frontend",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
2024-11-03 18:14:47 +00:00
|
|
|
"build": "vite build",
|
|
|
|
"watch": "vite build --watch",
|
2024-11-02 18:16:32 +00:00
|
|
|
"type-check": "vue-tsc --build --force",
|
2024-11-03 16:55:10 +00:00
|
|
|
"lint": "eslint . --fix"
|
2024-11-02 18:16:32 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-12-05 06:41:34 +00:00
|
|
|
"axios": "^1.7.9",
|
2024-11-02 18:41:13 +00:00
|
|
|
"bulma": "^1.0.2",
|
|
|
|
"font-awesome": "^4.7.0",
|
2024-11-16 06:31:25 +00:00
|
|
|
"vue": "^3.5.13",
|
2024-11-27 12:59:59 +00:00
|
|
|
"vue-router": "^4.5.0"
|
2024-11-02 18:16:32 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-27 06:52:36 +00:00
|
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
2024-11-02 18:16:32 +00:00
|
|
|
"@vue/eslint-config-prettier": "^10.1.0",
|
2024-11-26 06:53:42 +00:00
|
|
|
"@vue/eslint-config-typescript": "^14.1.4",
|
2024-11-28 06:31:53 +00:00
|
|
|
"@vue/tsconfig": "^0.7.0",
|
2024-12-14 06:37:44 +00:00
|
|
|
"eslint": "^9.17.0",
|
2024-12-01 15:03:13 +00:00
|
|
|
"eslint-plugin-vue": "^9.32.0",
|
2024-12-05 06:41:42 +00:00
|
|
|
"prettier": "^3.4.2",
|
2024-11-23 19:09:01 +00:00
|
|
|
"typescript": "5.6",
|
2024-12-06 06:46:04 +00:00
|
|
|
"vite": "^6.0.3",
|
2024-11-02 18:16:32 +00:00
|
|
|
"vue-tsc": "^2.1.10"
|
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"arrowParens": "avoid"
|
|
|
|
}
|
|
|
|
}
|