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.
101 lines
3.2 KiB
101 lines
3.2 KiB
{
|
|
"name": "vite-vue3-lowcode",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"description": "A Vite2.x + Vue3 + TypeScript LowCode",
|
|
"scripts": {
|
|
"dev": "cross-env --max_old_space_size=4096 vite",
|
|
"build": "cross-env vite build",
|
|
"build-tsc": "vue-tsc --noEmit && vite build",
|
|
"serve": "vite preview",
|
|
"deploy": "gh-pages -d dist",
|
|
"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",
|
|
"prepare": "husky install"
|
|
},
|
|
"dependencies": {
|
|
"@vant/touch-emulator": "^1.3.2",
|
|
"@vueuse/core": "^5.2.0",
|
|
"@vueuse/integrations": "^5.2.0",
|
|
"animate.css": "^4.1.1",
|
|
"axios": "^0.21.1",
|
|
"dayjs": "^1.10.6",
|
|
"dexie": "^3.0.3",
|
|
"element-plus": "1.0.2-beta.58",
|
|
"lodash": "^4.17.21",
|
|
"monaco-editor": "^0.26.1",
|
|
"nanoid": "^3.1.23",
|
|
"normalize.css": "^8.0.1",
|
|
"nprogress": "^1.0.0-1",
|
|
"qrcode": "^1.4.4",
|
|
"qs": "^6.10.1",
|
|
"vant": "3.1.4",
|
|
"vue": "3.1.5",
|
|
"vue-router": "^4.0.10",
|
|
"vuedraggable": "^4.0.3",
|
|
"vuex": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^13.1.0",
|
|
"@commitlint/config-conventional": "^13.1.0",
|
|
"@types/node": "^16.4.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.4",
|
|
"@typescript-eslint/parser": "^4.28.4",
|
|
"@vitejs/plugin-legacy": "^1.4.4",
|
|
"@vitejs/plugin-vue": "^1.2.5",
|
|
"@vitejs/plugin-vue-jsx": "^1.1.6",
|
|
"@vue/compiler-sfc": "3.1.5",
|
|
"commitizen": "^4.2.4",
|
|
"cross-env": "^7.0.3",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"cz-customizable": "^6.3.0",
|
|
"eslint": "^7.31.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-vue": "^7.14.0",
|
|
"gh-pages": "^3.2.3",
|
|
"husky": "^7.0.1",
|
|
"lint-staged": "^11.1.1",
|
|
"prettier": "^2.3.2",
|
|
"pretty-quick": "^3.1.1",
|
|
"sass": "1.36.0",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
"stylelint-config-standard": "^22.0.0",
|
|
"stylelint-order": "^4.1.0",
|
|
"typescript": "^4.3.5",
|
|
"vite": "2.4.3",
|
|
"vite-plugin-components": "^0.13.2",
|
|
"vite-plugin-style-import": "^1.0.1",
|
|
"vite-plugin-windicss": "^1.2.5",
|
|
"vue-eslint-parser": "^7.9.0",
|
|
"vue-tsc": "^0.2.2",
|
|
"windicss": "^3.1.5"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
|