wireguard-dashboard-admin/package.json

135 lines
4.4 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",
2023-06-14 16:29:45 +08:00
"version": "4.4.0",
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",
2023-06-05 15:44:49 +08:00
"clean:cache": "rimraf node_modules && rimraf .eslintcache && pnpm install",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix",
2023-05-12 13:27:40 +08:00
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
2023-06-05 15:44:49 +08:00
"lint:stylelint": "stylelint \"**/*.{html,vue,css,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
2021-10-16 16:16:58 +08:00
"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": {
2023-05-12 13:27:40 +08:00
"@pureadmin/descriptions": "^1.1.1",
2023-06-14 16:29:45 +08:00
"@pureadmin/table": "^2.3.2",
2023-06-19 12:04:37 +08:00
"@pureadmin/utils": "^1.9.6",
"@vueuse/core": "^10.2.0",
2023-06-05 15:44:49 +08:00
"@vueuse/motion": "^2.0.0",
2021-10-16 16:16:58 +08:00
"animate.css": "^4.1.1",
2023-05-12 13:27:40 +08:00
"axios": "^1.4.0",
2023-06-05 15:44:49 +08:00
"dayjs": "^1.11.8",
2023-05-12 13:27:40 +08:00
"echarts": "^5.4.2",
2023-06-05 15:44:49 +08:00
"element-plus": "^2.3.6",
2023-05-12 13:27:40 +08:00
"js-cookie": "^3.0.5",
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-06-19 12:04:37 +08:00
"pinia": "^2.1.4",
2023-06-05 15:44:49 +08:00
"qs": "^6.11.2",
2023-02-28 22:42:12 +08:00
"responsive-storage": "^2.2.0",
2023-05-12 13:27:40 +08:00
"sortablejs": "^1.15.0",
2023-06-05 15:44:49 +08:00
"vue": "^3.3.4",
"vue-router": "^4.2.2",
2023-06-19 12:04:37 +08:00
"vue-types": "^5.0.4"
2021-10-16 16:16:58 +08:00
},
"devDependencies": {
2023-06-05 15:44:49 +08:00
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
2023-05-12 13:27:40 +08:00
"@iconify-icons/ep": "^1.2.11",
2023-06-05 15:44:49 +08:00
"@iconify-icons/ri": "^1.2.8",
2023-05-12 13:27:40 +08:00
"@iconify/vue": "^4.1.1",
2023-06-15 18:38:39 +08:00
"@pureadmin/theme": "^3.1.0",
2023-05-12 13:27:40 +08:00
"@types/js-cookie": "^3.0.3",
2022-11-11 11:53:54 +08:00
"@types/mockjs": "^1.0.7",
2023-06-14 16:29:45 +08:00
"@types/node": "^20.3.1",
"@types/nprogress": "0.2.0",
2021-12-06 17:11:15 +08:00
"@types/qs": "^6.9.7",
2023-05-12 13:27:40 +08:00
"@types/sortablejs": "^1.15.1",
2023-06-14 16:29:45 +08:00
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
2023-06-05 15:44:49 +08:00
"@vitejs/plugin-vue": "^4.2.3",
2023-05-12 13:27:40 +08:00
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.4.14",
2023-02-28 22:42:12 +08:00
"cloc": "^2.11.0",
2023-05-12 13:27:40 +08:00
"cssnano": "^6.0.1",
2023-06-19 12:04:37 +08:00
"eslint": "^8.43.0",
2023-05-12 13:27:40 +08:00
"eslint-plugin-prettier": "^4.2.1",
2023-06-19 12:04:37 +08:00
"eslint-plugin-vue": "^9.15.0",
2023-05-12 13:27:40 +08:00
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
2022-02-27 13:31:19 +08:00
"picocolors": "^1.0.0",
2023-06-05 15:44:49 +08:00
"postcss": "^8.4.24",
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",
2023-06-05 15:44:49 +08:00
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
2023-06-14 16:29:45 +08:00
"rollup-plugin-visualizer": "^5.9.2",
2023-06-19 12:04:37 +08:00
"sass": "^1.63.4",
2023-06-14 16:29:45 +08:00
"sass-loader": "^13.3.2",
2023-06-19 12:04:37 +08:00
"stylelint": "^15.8.0",
2023-05-12 13:27:40 +08:00
"stylelint-config-html": "^1.1.0",
2023-06-14 16:29:45 +08:00
"stylelint-config-recess-order": "^4.2.0",
2023-05-12 13:27:40 +08:00
"stylelint-config-recommended": "^12.0.0",
2023-06-14 16:29:45 +08:00
"stylelint-config-recommended-scss": "^12.0.0",
2023-05-12 13:27:40 +08:00
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
2023-06-14 16:29:45 +08:00
"stylelint-scss": "^5.0.1",
2022-11-26 19:14:08 +08:00
"svgo": "^3.0.2",
2023-05-12 13:27:40 +08:00
"tailwindcss": "^3.3.2",
2023-06-14 16:29:45 +08:00
"terser": "^5.18.0",
2023-06-05 15:44:49 +08:00
"typescript": "5.0.4",
"vite": "^4.3.9",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-compression": "^0.5.1",
2023-06-14 16:29:45 +08:00
"vite-plugin-mock": "2.9.6",
2023-05-12 13:27:40 +08:00
"vite-plugin-remove-console": "^2.1.1",
2023-02-28 22:42:12 +08:00
"vite-svg-loader": "^4.0.0",
2023-06-14 16:29:45 +08:00
"vue-eslint-parser": "^9.3.1",
2023-06-19 12:04:37 +08:00
"vue-tsc": "^1.8.0"
2021-10-16 16:16:58 +08:00
},
2022-08-22 21:34:55 +08:00
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
2023-05-12 13:27:40 +08:00
"webpack",
"core-js"
2022-08-22 21:34:55 +08:00
]
2023-05-12 13:27:40 +08:00
},
"allowedDeprecatedVersions": {
"sourcemap-codec": "*",
2023-06-05 15:44:49 +08:00
"w3c-hr-time": "*",
2023-05-12 13:27:40 +08:00
"stable": "*"
2022-08-22 21:34:55 +08:00
}
},
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"
}