MeterSphere/frontend/package.json

166 lines
5.3 KiB
JSON
Raw Normal View History

2023-05-24 11:08:08 +08:00
{
"name": "meter-sphere",
"description": "MeterSphere FrontEnd",
"version": "3.0.0",
"private": true,
"author": "MeterSphere Team",
"license": "MIT",
"scripts": {
"dev": "vite --config ./config/vite.config.dev.ts",
"build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts",
"build:local": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts --mode development",
2023-05-24 11:08:08 +08:00
"report": "cross-env REPORT=true npm run build",
"preview": "npm run build && vite preview --host",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
2023-05-24 11:08:08 +08:00
"lint:styles": "stylelint 'src/**/*.{vue,html,css,scss,less}' --fix",
"lint-staged": "npx lint-staged",
2023-05-24 14:58:24 +08:00
"prepare": "cd .. && husky install frontend/.husky",
2023-05-24 11:08:08 +08:00
"test": "vitest",
"coverage": "vitest run --coverage"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"stylelint --fix",
"prettier --write",
"eslint --fix"
],
"*.{less,css,scss,sass}": [
"stylelint --fix --custom-syntax postcss-less",
"prettier --write"
]
},
"dependencies": {
"@7polo/kity": "2.0.8",
"@7polo/kityminder-core": "1.4.53",
"@arco-design/web-vue": "^2.54.4",
"@arco-themes/vue-ms-theme-default": "^0.0.30",
"@form-create/arco-design": "^3.1.23",
"@halo-dev/richtext-editor": "0.0.0-alpha.33",
"@tanstack/vue-query": "^5.17.15",
"@tiptap/extension-image": "^2.1.15",
"@tiptap/extension-mention": "^2.1.13",
"@tiptap/suggestion": "^2.1.13",
"@tiptap/vue-3": "^2.1.13",
"@types/color": "^3.0.4",
"@types/node": "^20.11.16",
"@vueuse/core": "^10.7.2",
"@xmldom/xmldom": "^0.8.10",
"ace-builds": "^1.24.2",
2023-12-18 18:39:22 +08:00
"ahooks-vue": "^0.15.1",
"axios": "^1.6.5",
"dayjs": "^1.11.9",
"echarts": "^5.4.3",
"fastq": "^1.15.0",
2023-05-24 11:08:08 +08:00
"hotbox-minder": "1.0.15",
"jsencrypt": "^3.3.2",
"jsonpath-plus": "^8.0.0",
"localforage": "^1.10.0",
2023-05-24 11:08:08 +08:00
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
2023-07-17 15:16:54 +08:00
"monaco-editor": "^0.39.0",
2023-05-24 11:08:08 +08:00
"nprogress": "^0.2.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"pm": "link:@/tiptap/pm",
2023-05-24 11:08:08 +08:00
"query-string": "^8.1.0",
"resize-observer-polyfill": "^1.5.1",
2023-05-24 11:08:08 +08:00
"sortablejs": "^1.15.0",
"tippy.js": "^6.3.7",
"vue": "^3.4.15",
2023-12-05 18:31:48 +08:00
"vue-dompurify-html": "^4.1.4",
"vue-draggable-plus": "^0.3.5",
"vue-echarts": "^6.6.1",
"vue-i18n": "^9.3.0",
"vue-router": "^4.2.4",
"vue3-ace-editor": "^2.2.3",
"vue3-colorpicker": "^2.2.2",
"xml-beautify": "^1.2.3",
"xpath": "^0.0.34"
2023-05-24 11:08:08 +08:00
},
"devDependencies": {
"@arco-plugins/vite-vue": "^1.4.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/lodash": "^4.14.198",
"@types/lodash-es": "^4.17.9",
2023-05-24 11:08:08 +08:00
"@types/nprogress": "^0.2.0",
"@types/sortablejs": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
2023-05-24 11:08:08 +08:00
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
2023-06-06 18:31:00 +08:00
"@vitest/coverage-c8": "^0.31.4",
"@vue/babel-plugin-jsx": "^1.1.5",
"@vue/test-utils": "^2.4.1",
"@zougt/some-loader-utils": "^1.4.3",
"@zougt/vite-plugin-theme-preprocessor": "^1.4.8",
"autoprefixer": "^10.4.15",
"axios-mock-adapter": "^1.22.0",
"color": "^4.2.3",
2023-05-24 11:08:08 +08:00
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
2023-05-24 11:08:08 +08:00
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
2023-05-24 11:08:08 +08:00
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.17.0",
"fast-glob": "^3.3.1",
2023-05-24 11:08:08 +08:00
"husky": "^8.0.3",
2023-06-06 18:31:00 +08:00
"jsdom": "^22.1.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.29",
2023-05-24 11:08:08 +08:00
"postcss-html": "^1.5.0",
2023-06-06 18:31:00 +08:00
"postcss-import": "^15.1.0",
2023-05-24 11:08:08 +08:00
"postcss-less": "^6.0.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"rollup": "^2.79.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.66.1",
"stylelint": "^14.16.1",
2023-06-06 18:31:00 +08:00
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
2023-05-24 11:08:08 +08:00
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
2023-05-24 11:08:08 +08:00
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-less": "^1.0.8",
2023-05-24 11:08:08 +08:00
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.3.3",
2023-05-24 11:08:08 +08:00
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.16.7",
2023-05-24 11:08:08 +08:00
"unplugin-vue-components": "^0.24.1",
2023-06-06 18:31:00 +08:00
"vite": "^3.2.7",
2023-05-24 11:08:08 +08:00
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-imagemin": "^0.6.1",
2023-07-17 15:16:54 +08:00
"vite-plugin-monaco-editor": "^1.1.0",
2023-05-24 11:08:08 +08:00
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
2023-05-24 11:08:08 +08:00
"vite-svg-loader": "^3.6.0",
2023-06-06 18:31:00 +08:00
"vitest": "^0.31.4",
"vue-tsc": "^1.8.10"
2023-05-24 11:08:08 +08:00
},
"engines": {
"node": ">=14.0.0"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china",
"rollup": "^2.79.1",
"gifsicle": "5.2.0"
}
}