-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
97 lines (97 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "svg-drawing",
"version": "0.2.1",
"type": "module",
"private": true,
"packageManager": "pnpm@8.6.7",
"scripts": {
"build": "vite-ssg build",
"dev": "vite --port 3333",
"lint": "eslint .",
"preview": "vite preview",
"preview-https": "serve dist",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest",
"typecheck": "vue-tsc --noEmit",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks",
"sizecheck": "npx vite-bundle-visualizer"
},
"dependencies": {
"@quasar/extras": "^1.16.5",
"@unhead/vue": "^1.1.30",
"@unocss/reset": "^0.53.5",
"@vueuse/core": "^10.2.1",
"@vueuse/head": "^1.1.26",
"d3": "^7.8.5",
"lodash-es": "^4.17.21",
"mousetrap": "^1.6.5",
"nprogress": "^0.2.0",
"perfect-freehand": "^1.2.0",
"pinia": "^2.1.4",
"quasar": "^2.12.3",
"tweakpane": "^3.1.10",
"vue": "^3.3.4",
"vue-demi": "^0.14.5",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@iconify-json/carbon": "^1.1.18",
"@iconify-json/fa6-brands": "^1.1.11",
"@iconify-json/solar": "^1.1.1",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@quasar/vite-plugin": "^1.4.1",
"@tweakpane/core": "^1.1.9",
"@types/d3": "^7.4.0",
"@types/lodash-es": "^4.17.8",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@unocss/eslint-config": "^0.53.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue-macros/volar": "^0.12.1",
"@vue/test-utils": "^2.4.0",
"critters": "^0.0.19",
"cross-env": "^7.0.3",
"cypress": "^12.17.1",
"cypress-vite": "^1.4.1",
"eslint": "^8.44.0",
"eslint-plugin-cypress": "^2.13.3",
"https-localhost": "^4.7.1",
"lint-staged": "^13.2.3",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shiki": "^0.9.0",
"pnpm": "^8.6.7",
"sass": "1.32.12",
"shiki": "^0.14.3",
"simple-git-hooks": "^2.8.1",
"taze": "^0.11.2",
"typescript": "^5.1.6",
"unocss": "^0.53.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-macros": "^2.3.6",
"vite": "^4.4.3",
"vite-bundle-visualizer": "^0.8.0",
"vite-plugin-inspect": "^0.7.32",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-vue-component-preview": "^1.1.6",
"vite-plugin-vue-devtools": "^0.5.1",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-plugin-vue-markdown": "^0.23.5",
"vite-plugin-webfont-dl": "^3.7.6",
"vite-ssg": "^0.23.0",
"vite-ssg-sitemap": "^0.5.1",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.(vue|ts|js)": "eslint --fix"
}
}