-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.26 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"lint": "vue-cli-service lint",
"dev": "vite",
"prepare": "husky install",
"preview": "vite preview",
"api": "openapi-generator-cli generate -g typescript-axios -i ./docs/openapi.yml -o ./src/apis/generated"
},
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"express": "^4.18.1",
"gsap": "^3.10.4",
"vue": "^3.2.25"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.1",
"@quasar/extras": "^1.14.0",
"@quasar/vite-plugin": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/cli-plugin-eslint": "~5.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.4.1",
"quasar": "^2.7.1",
"sass": "^1.32.12",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-router": "^4.0.16",
"vue-tsc": "^0.34.7",
"vuex": "^4.0.2"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"eslint --fix"
]
}
}