-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.1 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
76
77
{
"name": "davatar",
"type": "module",
"version": "2.7.5",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"dev:mock": "vite dev --mode mock",
"build": "rimraf dist/assets/* && vite build",
"serve": "vite preview",
"lint": "eslint --cache src",
"bump": "bumpp package.json --commit \"release: v\" --push --tag",
"up:deps": "taze major",
"prepare": "npx simple-git-hooks",
"up:polyfill": "nolyfill install",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/components": "^10.11.1",
"@vueuse/core": "^10.11.1",
"axios": "^1.7.7",
"hoci": "^0.6.0",
"pinia": "^2.2.6",
"query-string": "^9.1.1",
"tslx": "^0.1.1",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"vue-virtual-scroller": "2.0.0-beta.8",
"workbox-expiration": "^7.3.0",
"workbox-strategies": "^7.3.0"
},
"devDependencies": {
"@curev/eslint-config": "^0.3.7",
"@fourze/core": "^0.30.2",
"@fourze/vite": "^0.30.2",
"@iconify-json/ic": "^1.2.1",
"@types/node": "^20.17.6",
"@unocss/preset-icons": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.0",
"@vitejs/plugin-vue-jsx": "^4.1.0",
"bumpp": "^9.8.1",
"eslint": "^8.57.1",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"nolyfill": "^1.0.42",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.81.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"typescript": "^5.6.3",
"unocss": "^0.64.1",
"unocss-preset-palette": "^0.3.6",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.21.0",
"vue-tsc": "^2.1.10",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-window": "^7.3.0"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.28"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"npx eslint --fix --cache"
]
}
}