-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "@widget-js/widgets",
"type": "module",
"version": "0.0.1",
"private": true,
"author": "Widget JS",
"license": "MIT",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"remote": "widget dependencies -t remote",
"local": "widget dependencies -t local",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache . --fix"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@vueuse/core": "^9.4.0",
"@vueuse/integrations": "^10.5.0",
"@vueuse/motion": "2.0.0-beta.12",
"@vueuse/router": "^9.9.0",
"@widget-js/core": "^24.1.1-beta.34",
"@widget-js/vue3": "^24.1.1-beta.33",
"animate.css": "^4.1.1",
"axios": "^1.6.0",
"color": "^4.2.3",
"consola": "^3.2.3",
"core-js": "^3.26.1",
"dayjs": "^1.11.6",
"driver.js": "^0.9.8",
"element-plus": "^2.4.3",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"lunar-typescript": "^1.7.0",
"lyric-resolver": "^0.1.6",
"nanoid": "^4.0.2",
"pinia": "^2.1.6",
"rrule": "^2.7.2",
"sortablejs": "^1.15.0",
"vue": "^3.3.4",
"vue-demi": "^0.14.5",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4",
"vue-scroll-picker": "^1.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@antfu/ni": "^0.21.4",
"@types/color": "^3.0.3",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/compiler-sfc": "^3.2.45",
"@widget-js/vite-plugin-widget": "^24.1.1-beta.30",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.2",
"eslint": "8.48.0",
"eslint-plugin-vue": "9.19.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.21",
"raw-loader": "^4.0.2",
"sass": "^1.56.0",
"sass-loader": "^12.0.0",
"simple-git-hooks": "^2.9.0",
"style-loader": "^3.3.1",
"ts-loader": "^8.3.0",
"typescript": "^5.2.2",
"unocss": "^0.51.13",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^5.0.5",
"vite-plugin-checker": "^0.6.1",
"vitest": "^0.34.6",
"vue-loader": "^16.8.3",
"vue-tsc": "^1.8.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}