-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.9 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
{
"name": "hwameistor-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "npm run lint:style && npm run lint:es && npm run lint:type",
"commit": "git-cz",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
"lint:es": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\" --config .eslintrc.js --fix --max-warnings=0",
"lint:style": "stylelint \"src/**/*.{vue,scss,css}\" --config .stylelintrc.js --fix",
"lint:type": "vue-tsc -noEmit",
"generate:sdk": "swagger-typescript-api -p ./swagger.json -o ./src/services -n index.ts --module-name-first-tag --modular --extract-request-params --extract-request-body"
},
"dependencies": {
"@dao-style/core": "^1.9.0",
"@dao-style/extend": "^1.7.1",
"@dao-style/v-chart": "^0.0.7",
"@vueuse/core": "^9.6.0",
"autoprefixer": "^10",
"core-js": "^3.8.3",
"dayjs": "^1.11.5",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.34.1",
"monaco-yaml": "^4.0.2",
"normalize.css": "^8.0.1",
"pinia": "^2.1.3",
"portable-fetch": "^3.0.0",
"postcss": "^8",
"tailwindcss": "^3",
"url": "^0.11.0",
"vee-validate": "^4.6.9",
"vue": "^3.2.13",
"vue-i18n": "^9.1.0",
"vue-router": "^4.0.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/cz-commitlint": "^16.0.0",
"@dao-style/unplugin-extend": "^0.0.6",
"@intlify/vue-i18n-loader": "^3.0.0",
"@types/js-cookie": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"commitizen": "^4.2.4",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"lint-staged": "^11.1.2",
"monaco-editor-webpack-plugin": "^7.0.1",
"postcss-html": "^1.3.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"stylelint": "^14.3.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"swagger-typescript-api": "^12.0.2",
"typescript": "~4.9.5",
"vue-cli-plugin-tailwind": "~3.0.0",
"vue-tsc": "~1.2.0",
"yorkie": "^2.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
}
}