vue3-vant-mobile/package.json

85 lines
2.3 KiB
JSON
Raw Normal View History

2022-05-27 15:19:49 +00:00
{
"name": "vue3-vant-mobile",
2022-08-10 07:28:23 +00:00
"version": "1.0.0",
"packageManager": "pnpm@7.14.0",
"description": "template for Vue3 Vant Mobile",
"license": "MIT",
2022-05-27 15:19:49 +00:00
"scripts": {
2022-06-04 07:07:46 +00:00
"dev": "cross-env MOCK_SERVER_PORT=8086 vite",
2022-05-27 15:19:49 +00:00
"build": "vue-tsc --noEmit && vite build",
2022-06-09 05:18:46 +00:00
"build:dev": "vue-tsc --noEmit && vite build --mode=development",
2022-10-22 12:51:16 +00:00
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
2022-08-16 02:57:15 +00:00
"test": "vitest",
"plop": "plop"
2022-05-27 15:19:49 +00:00
},
"dependencies": {
"@types/lodash-es": "^4.17.6",
"@vant/touch-emulator": "^1.4.0",
"@vant/use": "^1.4.3",
"axios": "^1.2.0",
2022-09-28 08:51:34 +00:00
"echarts": "^5.4.0",
"lodash-es": "^4.17.21",
2022-05-30 09:46:47 +00:00
"nprogress": "^0.2.0",
"pinia": "^2.0.27",
"pinia-plugin-persistedstate": "^3.0.1",
2022-09-29 03:26:53 +00:00
"resize-detector": "^0.3.0",
2022-06-04 07:07:46 +00:00
"store": "^2.0.12",
"vant": "^4.0.0",
"vconsole": "^3.15.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
2022-05-27 15:19:49 +00:00
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@types/node": "^18.11.9",
2022-05-30 09:46:47 +00:00
"@types/nprogress": "^0.2.0",
2022-06-04 07:07:46 +00:00
"@types/store": "^2.0.2",
"@vitejs/plugin-legacy": "^2.3.1",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"autoprefixer": "^10.4.13",
"babel-plugin-module-resolver": "^4.1.0",
2022-10-09 06:59:01 +00:00
"commitizen": "^4.2.5",
2022-06-06 06:35:32 +00:00
"consola": "^2.15.3",
2022-06-04 07:07:46 +00:00
"cross-env": "^7.0.3",
2022-10-09 06:59:01 +00:00
"cz-emoji-chinese": "^0.3.1",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"less": "^4.1.3",
2022-06-04 07:07:46 +00:00
"mockjs": "^1.1.0",
"path-to-regexp": "^6.2.1",
"plop": "^3.1.1",
"postcss": "^8.4.19",
"postcss-px-to-viewport-8-plugin": "^1.1.5",
"rollup": "^3.5.0",
"rollup-plugin-visualizer": "^5.8.3",
"signale": "^1.4.0",
"slash2": "^2.0.0",
"terser": "^5.16.0",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.12.0",
"unplugin-vue-components": "^0.22.11",
"vite": "^3.2.4",
"vite-plugin-vconsole": "^1.2.2",
"vitest": "^0.25.3",
"vue-tsc": "^1.0.9"
2022-09-30 06:22:55 +00:00
},
2022-10-09 06:59:01 +00:00
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-chinese"
},
"cz-emoji-chinese": {
"skipQuestions": [
"body",
"scope"
]
2022-10-09 06:59:01 +00:00
}
2022-05-27 15:19:49 +00:00
}
}