2021-12-10 14:11:49 +08:00
|
|
|
{
|
|
|
|
"name": "go-view",
|
2021-12-14 15:53:30 +08:00
|
|
|
"version": "0.1.0",
|
2021-12-10 14:11:49 +08:00
|
|
|
"scripts": {
|
2022-02-09 17:40:23 +08:00
|
|
|
"dev": "vite --host",
|
2021-12-10 14:11:49 +08:00
|
|
|
"build": "vue-tsc --noEmit && vite build",
|
2022-01-19 21:29:04 +08:00
|
|
|
"lint": "eslint \"{src}/**/*.{vue,ts,tsx}\" --fix --ext",
|
|
|
|
"new": "plop --plopfile ./plop/plopfile.js"
|
2021-12-10 14:11:49 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-01-13 16:20:25 +08:00
|
|
|
"animate.css": "^4.1.1",
|
2021-12-10 14:11:49 +08:00
|
|
|
"axios": "^0.23.0",
|
2022-01-07 22:02:13 +08:00
|
|
|
"crypto-ts": "^1.0.2",
|
2022-02-22 10:10:39 +08:00
|
|
|
"naive-ui": "^2.25.2",
|
2021-12-10 14:11:49 +08:00
|
|
|
"pinia": "^2.0.6",
|
2021-12-20 13:36:54 +08:00
|
|
|
"screenfull": "^6.0.0",
|
2021-12-10 14:11:49 +08:00
|
|
|
"vue": "^3.2.16",
|
2021-12-17 11:55:42 +08:00
|
|
|
"vue-i18n": "^9.2.0-beta.23",
|
2021-12-10 14:11:49 +08:00
|
|
|
"vue-router": "4.0.12"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^16.11.1",
|
2021-12-14 15:53:30 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
|
|
"@typescript-eslint/parser": "^5.6.0",
|
2022-02-22 10:10:39 +08:00
|
|
|
"@vicons/carbon": "~0.11.0",
|
2021-12-20 13:36:54 +08:00
|
|
|
"@vicons/ionicons5": "~0.11.0",
|
2021-12-10 14:11:49 +08:00
|
|
|
"@vitejs/plugin-vue": "^1.9.3",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^1.2.0",
|
|
|
|
"@vue/compiler-sfc": "^3.2.20",
|
2021-12-17 11:55:42 +08:00
|
|
|
"@vueuse/core": "^7.3.0",
|
2021-12-10 14:11:49 +08:00
|
|
|
"default-passive-events": "^2.0.0",
|
2022-02-25 11:19:37 +08:00
|
|
|
"echarts": "^5.3.0",
|
2021-12-14 15:53:30 +08:00
|
|
|
"eslint": "^8.4.1",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-import": "^2.25.3",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"eslint-plugin-vue": "^8.2.0",
|
2021-12-20 13:36:54 +08:00
|
|
|
"lodash": "~4.17.21",
|
2022-01-25 18:19:44 +08:00
|
|
|
"mockjs": "^1.1.0",
|
|
|
|
"plop": "^3.0.5",
|
2021-12-14 15:53:30 +08:00
|
|
|
"prettier": "^2.5.1",
|
2021-12-10 14:11:49 +08:00
|
|
|
"sass": "^1.43.2",
|
|
|
|
"sass-loader": "^12.2.0",
|
|
|
|
"typescript": "^4.4.4",
|
|
|
|
"vite": "^2.6.10",
|
2022-02-28 20:26:04 +08:00
|
|
|
"vite-plugin-compression": "^0.5.1",
|
2021-12-10 14:11:49 +08:00
|
|
|
"vite-plugin-importer": "^0.2.5",
|
|
|
|
"vite-plugin-mock": "^2.9.6",
|
|
|
|
"vite-plugin-style-import": "^1.2.1",
|
2022-01-25 18:19:44 +08:00
|
|
|
"vue-echarts": "^6.0.2",
|
2021-12-10 14:11:49 +08:00
|
|
|
"vue-tsc": "^0.28.7"
|
2021-12-14 15:53:30 +08:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{vue,js,ts,tsx}": "eslint --fix"
|
2021-12-10 14:11:49 +08:00
|
|
|
}
|
2021-12-14 15:53:30 +08:00
|
|
|
}
|