-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
48
49
50
51
52
53
{
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "rimraf ./src/lib/apis/generated && node ./scripts/generate-apis.js && vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore . --fix && stylelint src/**/*.{css,scss,vue}",
"gen-api": "node ./scripts/generate-apis.js",
"clean": "rimraf ./src/lib/apis/generated"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*.{css,scss,vue}": "stylelint --fix"
},
"dependencies": {
"axios": "^0.21.1",
"direct-vuex": "^1.0.0-rc3",
"js-sha256": "^0.9.0",
"vue": "^3.0.5",
"vue-router": "^4.0.9",
"vue3-lazy": "^1.0.0-alpha.1",
"vuex": "^4.0.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.3.5",
"@traptitech/vite-plugin-trap-auth": "^0.1.1",
"@types/node": "^15.12.2",
"@types/vue-router": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.28.0",
"eslint-plugin-vue": "^7.11.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"ts-morph": "^11.0.0",
"typescript": "^4.3.2",
"vite": "^2.3.7",
"vite-plugin-pwa": "^0.8.1",
"vite-plugin-windicss": "^1.0.3",
"vue-tsc": "^0.0.24"
}
}