-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
105 lines (105 loc) · 2.87 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
98
99
100
101
102
103
104
105
{
"name": "howdz-dashboard",
"version": "1.5.5",
"description": "Custom your personal browser start page from some configurable components",
"author": {
"name": "leon-kfd",
"email": "[email protected]"
},
"keywords": [
"javascript",
"vue",
"vite",
"typescript",
"dashboard",
"drag",
"custom"
],
"type": "module",
"licence": "MIT",
"scripts": {
"prepare": "husky install",
"commit": "cz",
"dev": "vite",
"build": "cross-env VITE_APP_BUILD_MODE=cdn vite build",
"upload": "node scripts/upload-cdn.cjs",
"serve": "vite preview",
"build:crx": "cross-env VITE_APP_BUILD_MODE=crx vite build",
"move:crx": "node scripts/build-crx.cjs",
"lint": "oxlint src"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "npx --no-install commitlint --edit '$1'",
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@emotion/css": "^11.7.1",
"@howdyjs/mouse-menu": "^2.1.1",
"@howdyjs/to-control": "^2.1.1",
"@milkdown/core": "5.3.1",
"@milkdown/plugin-clipboard": "5.3.1",
"@milkdown/plugin-collaborative": "5.3.1",
"@milkdown/plugin-history": "5.3.1",
"@milkdown/plugin-listener": "5.3.1",
"@milkdown/plugin-math": "5.3.1",
"@milkdown/plugin-slash": "5.3.1",
"@milkdown/plugin-tooltip": "5.3.1",
"@milkdown/preset-commonmark": "5.3.1",
"@milkdown/preset-gfm": "5.3.1",
"@milkdown/theme-nord": "5.3.1",
"dayjs": "^1.10.4",
"element-plus": "2.4.1",
"eslint-plugin-oxlint": "^0.2.7",
"file-saver": "^2.0.5",
"js-md5": "^0.7.3",
"localforage": "^1.10.0",
"pako": "1.0.11",
"pinia": "^2.0.11",
"pinia-plugin-persistedstate": "^1.5.0",
"rough-notation": "^0.5.1",
"vue": "^3.2.4",
"vue-eslint-parser": "^9.4.2",
"vue-grid-layout": "3.0.0-beta1",
"vue-i18n": "9",
"vuedraggable": "^4.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.4",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@types/file-saver": "^2.0.2",
"@types/js-md5": "^0.4.2",
"@types/node": "^14.14.37",
"@types/pako": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"adm-zip": "^0.5.5",
"commitizen": "^4.2.4",
"commitlint": "^16.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.24.0",
"husky": "^7.0.4",
"oxlint": "^0.2.16",
"qiniu": "^7.9.0",
"rimraf": "^3.0.2",
"sass": "^1.68.0",
"typescript": "5.2.2",
"vite": "^5.2.8",
"vite-plugin-md": "^0.21.5"
},
"repository": {
"type": "git",
"url": "https://github.com/leon-kfd/dashboard"
}
}