vue3-vant-mobile/package.json

92 lines
2.4 KiB
JSON
Raw Normal View History

2022-05-27 15:19:49 +00:00
{
"name": "vue3-vant-mobile",
2023-03-07 14:38:33 +00:00
"version": "1.3.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",
"prepare": "npx husky install"
2022-05-27 15:19:49 +00:00
},
"dependencies": {
"@vant/touch-emulator": "^1.4.0",
2023-03-07 14:33:07 +00:00
"@vant/use": "^1.5.0",
"axios": "^1.3.4",
"echarts": "^5.4.1",
"lodash-es": "^4.17.21",
2022-05-30 09:46:47 +00:00
"nprogress": "^0.2.0",
2023-03-07 14:33:07 +00:00
"pinia": "^2.0.33",
"pinia-plugin-persistedstate": "^3.1.0",
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",
2023-03-07 14:33:07 +00:00
"vant": "^4.1.0",
"vconsole": "^3.15.0",
2023-03-07 14:33:07 +00:00
"vue": "^3.2.47",
"vue-router": "^4.1.6"
2022-05-27 15:19:49 +00:00
},
"devDependencies": {
2022-12-05 14:49:21 +00:00
"@antfu/eslint-config": "^0.33.1",
2023-03-07 14:33:07 +00:00
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
2023-03-07 14:33:07 +00:00
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
"@types/lodash-es": "^4.17.6",
2023-03-07 14:33:07 +00:00
"@types/node": "^18.14.6",
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",
2023-03-07 14:33:07 +00:00
"@vitejs/plugin-legacy": "^3.0.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-plugin-module-resolver": "^4.1.0",
2023-03-07 14:33:07 +00:00
"commitizen": "^4.3.0",
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",
2023-03-07 14:33:07 +00:00
"eslint": "^8.35.0",
"husky": "^8.0.3",
"less": "^4.1.3",
2022-06-04 07:07:46 +00:00
"mockjs": "^1.1.0",
"path-to-regexp": "^6.2.1",
2023-03-07 14:33:07 +00:00
"plop": "^3.1.2",
"postcss-mobile-forever": "^2.3.3",
"rollup": "^3.18.0",
"rollup-plugin-visualizer": "^5.9.0",
"signale": "^1.4.0",
"slash2": "^2.0.0",
2023-03-07 14:33:07 +00:00
"terser": "^5.16.5",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.12.2",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.1.4",
"vite-plugin-vconsole": "^1.3.1",
"vitest": "^0.25.8",
"vue-tsc": "^1.2.0"
2022-09-30 06:22:55 +00:00
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss"
]
}
},
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
}
}