vue3-vant-mobile/package.json

93 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",
"@vant/use": "^1.6.0",
"axios": "^1.5.1",
"echarts": "^5.4.3",
"lodash-es": "^4.17.21",
2022-05-30 09:46:47 +00:00
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.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",
"vant": "^4.7.2",
2023-06-08 15:33:22 +00:00
"vconsole": "^3.15.1",
"vue": "^3.3.6",
"vue-router": "^4.2.5",
"vue-router-better-scroller": "^0.0.0"
2022-05-27 15:19:49 +00:00
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.28",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@babel/register": "^7.22.15",
"@types/lodash-es": "^4.17.10",
"@types/node": "^20.8.7",
"@types/nprogress": "^0.2.2",
"@types/store": "^2.0.4",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"autoprefixer": "^10.4.16",
"babel-plugin-module-resolver": "^5.0.0",
2023-03-07 14:33:07 +00:00
"commitizen": "^4.3.0",
"consola": "^3.2.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.52.0",
2023-03-07 14:33:07 +00:00
"husky": "^8.0.3",
"less": "^4.2.0",
2022-06-04 07:07:46 +00:00
"mockjs": "^1.1.0",
"path-to-regexp": "^6.2.1",
"plop": "^4.0.0",
"postcss-mobile-forever": "^4.0.0",
"rollup": "^4.1.4",
"rollup-plugin-visualizer": "^5.9.2",
"signale": "^1.4.0",
"slash2": "^2.0.0",
"terser": "^5.22.0",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vite-plugin-vconsole": "^2.0.1",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.19"
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
}
}