-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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
{
"type": "module",
"private": true,
"packageManager": "pnpm@6.32.3",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@microsoft/signalr": "^8.0.0",
"@vueuse/core": "^10.9.0",
"crypto-js": "^4.2.0",
"ky": "^1.5.0",
"naive-ui": "^2.39.0",
"uuid": "^10.0.0",
"vanilla-jsoneditor": "^2.3.3",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.3",
"@iconify-json/carbon": "^1.1.31",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.11.30",
"@types/uuid": "^10.0.0",
"@unocss/eslint-plugin": "^0.58.6",
"@unocss/reset": "^0.58.6",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/test-utils": "^2.4.5",
"eslint": "^8.57.0",
"eslint-plugin-format": "^0.1.0",
"jsdom": "^24.0.0",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.0",
"taze": "^0.13.3",
"typescript": "^5.4.2",
"unocss": "^0.58.6",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-router": "^0.8.5",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.15.5"
}
}