pilotwings/package.json

36 lines
814 B
JSON
Raw Normal View History

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",
"lint": "eslint . --fix"
2024-11-02 18:16:32 +00:00
},
"dependencies": {
"axios": "^1.7.7",
"bulma": "^1.0.2",
"font-awesome": "^4.7.0",
"vue": "^3.5.13",
2024-11-02 18:16:32 +00:00
"vue-router": "^4.4.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
2024-11-02 18:16:32 +00:00
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/tsconfig": "^0.6.0",
2024-11-02 18:16:32 +00:00
"eslint": "^9.14.0",
2024-11-11 23:40:30 +00:00
"eslint-plugin-vue": "^9.31.0",
2024-11-02 18:16:32 +00:00
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11",
2024-11-02 18:16:32 +00:00
"vue-tsc": "^2.1.10"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
}
}