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.
vite-vue3-lowcode/package.json

104 lines
3.2 KiB

3 years ago
{
"name": "vite-vue3-lowcode",
"version": "0.0.1",
"private": false,
"description": "A Vite2.x + Vue3 + TypeScript LowCode",
"scripts": {
"dev": "vite",
"build": "vite build",
"build-tsc": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
3 years ago
"deploy": "gh-pages -d dist",
3 years ago
"format": "prettier --write ./src",
"lint": "eslint ./src --ext .vue,.js,.ts,.tsx",
"lint-fix": "eslint --fix ./src --ext .vue,.js,.ts,.tsx",
"lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
3 years ago
"prepare": "husky install"
},
"dependencies": {
3 years ago
"@vant/touch-emulator": "^1.3.0",
"@vueuse/core": "^5.0.3",
"@vueuse/integrations": "^5.0.3",
"animate.css": "^4.1.1",
3 years ago
"axios": "^0.21.1",
"dayjs": "^1.10.5",
3 years ago
"dexie": "^3.0.3",
"element-plus": "^1.0.2-beta.48",
3 years ago
"lodash": "^4.17.21",
"monaco-editor": "^0.25.0",
3 years ago
"normalize.css": "^8.0.1",
"nprogress": "^1.0.0-1",
3 years ago
"qrcode": "^1.4.4",
"vant": "^3.0.18",
"vue": "3.1.1",
"vue-router": "^4.0.8",
"vuedraggable": "^4.0.3",
"vuex": "^4.0.1"
3 years ago
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@vitejs/plugin-legacy": "^1.4.1",
"@vitejs/plugin-vue": "^1.2.3",
"@vitejs/plugin-vue-jsx": "^1.1.5",
"@vue/compiler-sfc": "3.1.1",
"commitizen": "^4.2.4",
3 years ago
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.11.1",
"gh-pages": "^3.2.1",
3 years ago
"husky": "^6.0.0",
3 years ago
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"sass": "1.35.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
3 years ago
"typescript": "^4.3.2",
"vite": "2.3.7",
"vite-plugin-components": "^0.11.1",
"vite-plugin-style-import": "^0.10.1",
"vite-plugin-windicss": "^1.0.3",
3 years ago
"vue-eslint-parser": "^7.6.0",
"vue-tsc": "^0.1.7",
"windicss": "^3.1.3"
3 years ago
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/buqiyuan/vite-vue3-lowcode.git"
},
"keywords": [
"Vite",
"Vue3",
"TypeScript",
"LowCode"
],
"author": "buqiyuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/buqiyuan/vite-vue3-lowcode/issues"
},
"homepage": "https://github.com/buqiyuan/vite-vue3-lowcode#readme",
"lint-staged": {
"*.{vue,js,ts,tsx}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}