-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.17 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
{
"private": true,
"name": "vue-start",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:zxeryu/vue-start.git",
"author": "zx <zxpstudy@163.com>",
"license": "MIT",
"workspaces": [
"@vue-start/*",
"@vue-start-dev/*"
],
"scripts": {
"l-prepare": "tsc && lerna run build",
"l-release": "lerna version --conventional-commits",
"l-publish": "lerna publish from-git",
"start": "vite dev"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@amap/amap-jsapi-types": "^0.0.13",
"@emotion/css": "^11.10.5",
"ant-design-vue": "^3.2.5",
"axios": "^0.21.0",
"docx-preview": "^0.1.15",
"echarts": "^5.4.2",
"element-plus": "2.3.14",
"highlight.js": "^11.7.0",
"js-base64": "^3.7.4",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"polished": "^4.3.1",
"rxjs": "^7.3.0",
"sortablejs": "^1.15.3",
"vue": "3.2.47",
"vue-router": "^4.2.5",
"x-data-spreadsheet": "^1.1.9",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/runtime-corejs3": "^7.18.9",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.14",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/babel-plugin-jsx": "^1.1.1",
"autoprefixer": "^10.4.13",
"express": "^4.18.2",
"gray-matter": "^4.0.3",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"less": "3.8.1",
"lint-staged": "^10.5.2",
"markdown-it": "^13.0.1",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"rollup-plugin-dts": "^4.2.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.4",
"vite": "^3.2.6",
"vite-plugin-html-config": "^1.0.11",
"vue-tsc": "^1.0.8"
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120,
"jsxBracketSameLine": true,
"endOfLine": "auto"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"vue-tsc"
]
}
}