-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 923 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "mensa-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix"
},
"dependencies": {
"@vue/runtime-core": "^3.4.38",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"vue": "^3.4.21",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-vue": "^5.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.0",
"typescript": "^5.5.4",
"vite": "^5.3.3",
"vite-plugin-pwa": "^0.20.0",
"vue-tsc": "^2.0.6"
}
}