mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 00:37:33 +00:00
100 lines
2.5 KiB
JSON
100 lines
2.5 KiB
JSON
{
|
|
"name": "skywalking-booster-ui",
|
|
"version": "9.3.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc && vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "husky install"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.24.0",
|
|
"d3": "^7.3.0",
|
|
"d3-flame-graph": "^4.1.3",
|
|
"d3-tip": "^0.9.1",
|
|
"echarts": "^5.2.2",
|
|
"element-plus": "^2.0.2",
|
|
"lodash": "^4.17.21",
|
|
"monaco-editor": "^0.34.1",
|
|
"pinia": "^2.0.5",
|
|
"vis-timeline": "^7.5.1",
|
|
"vue": "^3.0.0",
|
|
"vue-grid-layout": "^3.0.0-beta1",
|
|
"vue-i18n": "^9.1.9",
|
|
"vue-router": "^4.0.0-0",
|
|
"vue-types": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3": "^7.1.0",
|
|
"@types/d3-tip": "^3.5.5",
|
|
"@types/echarts": "^4.9.12",
|
|
"@types/jest": "^24.0.19",
|
|
"@types/lodash": "^4.14.179",
|
|
"@types/three": "^0.131.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.18.0",
|
|
"@typescript-eslint/parser": "^4.18.0",
|
|
"@vitejs/plugin-vue": "^3.2.0",
|
|
"@vue/compiler-sfc": "^3.0.0",
|
|
"@vue/eslint-config-prettier": "^6.0.0",
|
|
"@vue/eslint-config-typescript": "^7.0.0",
|
|
"@vue/test-utils": "^2.0.0-0",
|
|
"babel-jest": "^24.9.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-define-config": "^1.12.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"eslint-plugin-vue": "^7.20.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.1.3",
|
|
"node-sass": "^6.0.1",
|
|
"postcss-html": "^1.3.0",
|
|
"postcss-scss": "^4.0.2",
|
|
"prettier": "^2.2.1",
|
|
"sass": "^1.56.1",
|
|
"stylelint": "^14.1.0",
|
|
"stylelint-config-html": "^1.0.0",
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
"stylelint-config-standard": "^24.0.0",
|
|
"stylelint-order": "^5.0.0",
|
|
"typescript": "~4.4.4",
|
|
"unplugin-auto-import": "^0.7.0",
|
|
"unplugin-vue-components": "^0.19.2",
|
|
"vite": "^3.2.3",
|
|
"vite-plugin-monaco-editor": "^1.1.0",
|
|
"vue-jest": "^5.0.0-0",
|
|
"vue-tsc": "^1.0.9"
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not dead"
|
|
],
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.vue": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"stylelint --fix --custom-syntax postcss-html"
|
|
],
|
|
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
|
|
"prettier --write--parser json"
|
|
],
|
|
"package.json": [
|
|
"prettier --write"
|
|
],
|
|
"*.{scss,less,styl}": [
|
|
"stylelint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|