You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.2 KiB
99 lines
3.2 KiB
{ |
|
"name": "vite-vue3-ts", |
|
"version": "1.0.0", |
|
"license": "MIT", |
|
"description": "a vite + vue3 + pinia + typescript + ant-design-vue template", |
|
"keywords": [ |
|
"vite", |
|
"vue3", |
|
"vue-router", |
|
"setup", |
|
"typescript", |
|
"pinia", |
|
"ant-design-vue", |
|
"template" |
|
], |
|
"homepage": "https://github.com/js-banana/vite-vue3-ts", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/js-banana/vite-vue3-ts.git" |
|
}, |
|
"engines": { |
|
"node": ">=14" |
|
}, |
|
"scripts": { |
|
"bootstrap": "pnpm install", |
|
"check": "vue-tsc --noEmit", |
|
"serve": "npm run dev", |
|
"dev": "vite", |
|
"dev:development": "vite --mode development", |
|
"build:production": "vue-tsc --noEmit && vite build --mode production", |
|
"build": "vite build", |
|
"build:check": "vue-tsc --noEmit && vite build", |
|
"build:github": "vite build --base=/vite-vue3-ts/", |
|
"build:no-cache": "pnpm clean:cache && npm run build", |
|
"preview": "vite preview", |
|
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite", |
|
"clean:lib": "rimraf node_modules", |
|
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix", |
|
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", |
|
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js", |
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && npx prettier CHANGELOG.md --write && git add CHANGELOG.md", |
|
"prepare": "husky install" |
|
}, |
|
"dependencies": { |
|
"@ant-design/icons-vue": "^6.0.1", |
|
"@vueuse/core": "^6.8.0", |
|
"ant-design-vue": "^3.2.7", |
|
"axios": "^0.24.0", |
|
"dayjs": "^1.11.3", |
|
"echarts": "^5.2.2", |
|
"lodash-es": "^4.17.21", |
|
"pinia": "^2.0.3", |
|
"sanitize.css": "^13.0.0", |
|
"vue": "^3.2.16", |
|
"vue-request": "^1.2.3", |
|
"vue-router": "^4.0.12" |
|
}, |
|
"devDependencies": { |
|
"@commitlint/cli": "^15.0.0", |
|
"@commitlint/config-conventional": "^15.0.0", |
|
"@faker-js/faker": "^7.3.0", |
|
"@types/lodash-es": "^4.17.5", |
|
"@typescript-eslint/eslint-plugin": "^4.31.1", |
|
"@typescript-eslint/parser": "^4.31.1", |
|
"@vitejs/plugin-legacy": "^2.0.0", |
|
"@vitejs/plugin-vue": "^3.0.1", |
|
"@vitejs/plugin-vue-jsx": "^2.0.0", |
|
"autoprefixer": "^10.4.0", |
|
"conventional-changelog-cli": "^2.2.2", |
|
"eslint": "^7.32.0", |
|
"eslint-config-prettier": "^8.3.0", |
|
"eslint-define-config": "~1.0.9", |
|
"eslint-plugin-jest": "^25.3.0", |
|
"eslint-plugin-prettier": "^4.0.0", |
|
"eslint-plugin-vue": "^7.17.0", |
|
"husky": "^7.0.4", |
|
"jest": "^27.4.2", |
|
"less": "^4.1.2", |
|
"lint-staged": "^11.2.6", |
|
"mockjs": "^1.1.0", |
|
"postcss": "^8.3.11", |
|
"postcss-html": "^1.2.0", |
|
"postcss-less": "^5.0.0", |
|
"prettier": "^2.4.1", |
|
"rimraf": "^3.0.2", |
|
"rollup-plugin-visualizer": "^5.7.1", |
|
"terser": "^5.14.2", |
|
"typescript": "^4.4.3", |
|
"unplugin-auto-import": "^0.4.20", |
|
"unplugin-vue-components": "^0.17.21", |
|
"vite": "^3.0.4", |
|
"vite-plugin-compression": "^0.3.6", |
|
"vite-plugin-mock": "^2.9.6", |
|
"vite-plugin-style-import": "^1.4.0", |
|
"vite-plugin-svg-icons": "^1.0.5", |
|
"vue-eslint-parser": "^7.11.0", |
|
"vue-tsc": "^0.3.0" |
|
} |
|
}
|
|
|