wireguard-dashboard-admin/package.json

125 lines
4.1 KiB
JSON
Raw Normal View History

2021-10-16 16:16:58 +08:00
{
2022-01-05 14:17:06 +08:00
"name": "pure-admin-thin",
2022-12-26 14:51:38 +08:00
"version": "3.9.7",
2021-10-16 16:16:58 +08:00
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=--max-old-space-size=4096 vite",
"serve": "pnpm dev",
"build": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 vite build",
"build:staging": "rimraf dist && vite build --mode staging",
"report": "rimraf dist && vite build",
2021-10-16 16:16:58 +08:00
"preview": "vite preview",
"preview:build": "pnpm build && vite preview",
2022-08-22 21:34:55 +08:00
"typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
2022-11-26 19:14:08 +08:00
"svgo": "svgo -f src/assets/svg -o src/assets/svg",
"cloc": "NODE_OPTIONS=--max-old-space-size=4096 cloc . --exclude-dir=node_modules --exclude-lang=YAML",
2022-11-26 19:14:08 +08:00
"clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
2021-10-16 16:16:58 +08:00
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
2022-01-18 16:59:35 +08:00
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
2021-10-16 16:16:58 +08:00
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all"
],
2021-10-16 16:16:58 +08:00
"dependencies": {
2022-08-22 21:34:55 +08:00
"@pureadmin/descriptions": "^1.1.0",
2023-02-28 22:42:12 +08:00
"@pureadmin/table": "^2.0.0",
2022-12-13 14:37:56 +08:00
"@pureadmin/utils": "^1.8.5",
2023-02-28 22:42:12 +08:00
"@vueuse/core": "^9.13.0",
2022-11-26 19:14:08 +08:00
"@vueuse/motion": "2.0.0-beta.12",
2021-10-16 16:16:58 +08:00
"animate.css": "^4.1.1",
2023-02-28 22:42:12 +08:00
"axios": "1.2.2",
"dayjs": "^1.11.7",
"echarts": "^5.4.1",
"element-plus": "^2.2.32",
2022-11-11 11:53:54 +08:00
"element-resize-detector": "^1.2.4",
2021-12-06 17:11:15 +08:00
"js-cookie": "^3.0.1",
2021-10-16 16:16:58 +08:00
"mitt": "^3.0.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"path": "^0.12.7",
2023-02-28 22:42:12 +08:00
"pinia": "^2.0.32",
2022-08-22 21:34:55 +08:00
"qs": "^6.11.0",
2023-02-28 22:42:12 +08:00
"responsive-storage": "^2.2.0",
"vue": "^3.2.47",
2022-10-26 11:25:45 +08:00
"vue-router": "^4.1.6",
2023-02-28 22:42:12 +08:00
"vue-types": "^5.0.2"
2021-10-16 16:16:58 +08:00
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
2023-02-28 22:42:12 +08:00
"@iconify-icons/ep": "^1.2.10",
"@iconify-icons/ri": "^1.2.4",
"@iconify/vue": "^4.1.0",
"@pureadmin/theme": "^3.0.0",
"@types/element-resize-detector": "1.1.3",
2021-12-06 17:11:15 +08:00
"@types/js-cookie": "^3.0.1",
2022-11-11 11:53:54 +08:00
"@types/mockjs": "^1.0.7",
"@types/node": "^18.11.9",
"@types/nprogress": "0.2.0",
2021-12-06 17:11:15 +08:00
"@types/qs": "^6.9.7",
2023-02-28 22:42:12 +08:00
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
2022-12-19 13:45:28 +08:00
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
2022-02-07 16:20:22 +08:00
"@vue/eslint-config-prettier": "^7.0.0",
2022-11-11 11:53:54 +08:00
"@vue/eslint-config-typescript": "^11.0.2",
2022-11-10 12:28:10 +08:00
"autoprefixer": "^10.4.13",
2023-02-28 22:42:12 +08:00
"cloc": "^2.11.0",
2022-11-10 12:28:10 +08:00
"cssnano": "^5.1.14",
2022-02-07 16:20:22 +08:00
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
2023-02-28 22:42:12 +08:00
"eslint-plugin-vue": "^9.9.0",
2022-08-22 21:34:55 +08:00
"husky": "^7.0.4",
"lint-staged": "11.1.2",
2022-02-27 13:31:19 +08:00
"picocolors": "^1.0.0",
2023-02-28 22:42:12 +08:00
"postcss": "^8.4.21",
2022-08-22 21:34:55 +08:00
"postcss-html": "^1.5.0",
2023-02-28 22:42:12 +08:00
"postcss-import": "^15.1.0",
"postcss-scss": "^4.0.6",
2022-02-07 16:20:22 +08:00
"prettier": "^2.5.1",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
2023-02-28 22:42:12 +08:00
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
2022-11-11 11:53:54 +08:00
"sass-loader": "^13.2.0",
2022-02-07 16:20:22 +08:00
"stylelint": "^14.3.0",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
2022-11-11 11:53:54 +08:00
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
2022-02-07 16:20:22 +08:00
"stylelint-order": "^5.0.0",
2022-11-26 19:14:08 +08:00
"svgo": "^3.0.2",
2023-02-28 22:42:12 +08:00
"tailwindcss": "^3.2.7",
2022-12-19 13:45:28 +08:00
"terser": "^5.16.1",
2023-02-28 22:42:12 +08:00
"typescript": "^4.9.5",
"unplugin-vue-define-options": "^1.0.0",
"vite": "^4.1.4",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-compression": "^0.5.1",
2021-10-16 16:16:58 +08:00
"vite-plugin-mock": "^2.9.6",
2023-02-28 22:42:12 +08:00
"vite-plugin-remove-console": "^2.1.0",
"vite-svg-loader": "^4.0.0",
2022-11-11 11:53:54 +08:00
"vue-eslint-parser": "^9.1.0",
2023-02-28 22:42:12 +08:00
"vue-tsc": "^1.2.0"
2021-10-16 16:16:58 +08:00
},
2022-08-22 21:34:55 +08:00
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"webpack"
]
}
},
2023-02-08 20:10:08 +08:00
"repository": "git@github.com:pure-admin/pure-admin-thin.git",
2021-10-16 16:16:58 +08:00
"author": "xiaoxian521",
"license": "MIT"
}