-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"type": "module",
"packageManager": "pnpm@8.15.3",
"scripts": {
"build": "vite build",
"dev": "vite",
"dev:container": "docker-compose -f ./docker-compose.local.yml up",
"format": "prettier -w -u .",
"lint:fix": "eslint --ext .js,.ts,.vue --ignore-path .eslintignore --fix .",
"typecheck": "vue-tsc --noEmit && tsc --noEmit",
"up": "taze major -I",
"prepare": "husky install",
"prebuild": "rimraf ./dist",
"clean:js": "tsc --build --clean"
},
"dependencies": {
"@headlessui/vue": "^1.7.19",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^10.8.0",
"base-64": "^1.0.0",
"pinia": "^2.1.7",
"qrcode.vue": "^3.4.1",
"uuid": "^9.0.1",
"vue": "^3.4.19",
"vue-i18n": "9.9.1",
"vue-qrcode-reader": "^5.5.3",
"vue-router": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.30",
"@iconify-json/fluent": "^1.1.48",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@types/base-64": "^1.0.2",
"@types/node": "^20.11.20",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@unocss/eslint-config": "^0.58.5",
"@unocss/reset": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-macros/volar": "^0.18.11",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"execa": "^8.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pnpm": "^8.15.3",
"rimraf": "^5.0.5",
"sass": "^1.71.1",
"taze": "^0.13.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"unocss": "^0.58.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-macros": "^2.7.10",
"vite": "^5.1.4",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"**/*.{vue,js,ts,html,css,scss}": "npm run format",
"src/**/*.{vue,js,ts}": "npm run lint:fix"
},
"eslintConfig": {
"extends": [
"@unocss"
]
}
}