1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "vue-vite-h5",
- "version": "0.2.0",
- "license": "MIT",
- "author": "LZHD",
- "description": "Developing with Vue 3 and Typescript in Vite.",
- "repository": {
- "type": "git",
- "url": "https://github.com/LZHD/vue-vite-h5"
- },
- "bugs": {
- "url": "https://github.com/LZHD/vue-vite-h5/issues"
- },
- "homepage": "https://github.com/LZHD/vue-vite-h5#readme",
- "scripts": {
- "dev": "vite",
- "start": "npm run dev",
- "build": "vue-tsc --noEmit && vite build",
- "serve": "vite preview",
- "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src",
- "generate": "plop",
- "prepare": "husky install"
- },
- "dependencies": {
- "dayjs": "^1.11.7",
- "vant": "^4.1.2",
- "vue": "^3.2.47",
- "vue-router": "^4.1.6"
- },
- "devDependencies": {
- "@babel/core": "^7.21.4",
- "@babel/preset-env": "^7.21.4",
- "@types/node": "^16.18.23",
- "@typescript-eslint/eslint-plugin": "^5.57.1",
- "@typescript-eslint/parser": "^5.57.1",
- "@vitejs/plugin-vue": "^4.1.0",
- "@vitejs/plugin-vue-jsx": "^3.0.1",
- "@vue/babel-plugin-jsx": "^1.1.1",
- "@vue/compiler-sfc": "^3.2.47",
- "@vue/eslint-config-prettier": "^7.1.0",
- "@vue/eslint-config-typescript": "^11.0.2",
- "autoprefixer": "^10.4.14",
- "babel-plugin-dynamic-import-node": "^2.3.3",
- "commitizen": "^4.3.0",
- "cz-conventional-changelog": "^3.3.0",
- "eslint": "^8.38.0",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-vue": "^9.10.0",
- "husky": "^8.0.0",
- "less": "^4.1.3",
- "lint-staged": "^13.2.2",
- "plop": "^3.1.2",
- "postcss": "^8.4.21",
- "postcss-pxtorem": "^6.0.0",
- "prettier": "^2.8.7",
- "typescript": "^5.0.4",
- "unplugin-vue-components": "^0.24.1",
- "vite": "^4.2.1",
- "vite-plugin-eslint": "^1.8.1",
- "vue-eslint-parser": "^9.1.1",
- "vue-tsc": "^1.2.0",
- "yorkie": "^2.0.0"
- },
- "gitHooks": {
- "pre-commit": "lint-staged"
- },
- "lint-staged": {
- "*.{js,jsx,vue,ts,tsx}": [
- "eslint --fix"
- ]
- },
- "engines": {
- "node": ">=14.20.0"
- },
- "config": {
- "commitizen": {
- "path": "./node_modules/cz-conventional-changelog"
- }
- }
- }
|