vite-vue3-lowcode/package.json

144 lines
4.7 KiB
JSON
Raw Permalink Normal View History

2021-05-04 21:54:05 +08:00
{
"name": "vite-vue3-lowcode",
"version": "0.0.1",
"private": false,
2022-01-01 01:31:04 +08:00
"description": "A Vite2.x + Vue3.x + TypeScript LowCode",
2021-05-04 21:54:05 +08:00
"scripts": {
2022-01-01 01:31:04 +08:00
"bootstrap": "pnpm install",
"serve": "npm run dev",
2021-06-24 01:38:30 +08:00
"dev": "cross-env --max_old_space_size=4096 vite",
2022-07-03 02:38:58 +08:00
"build": "rimraf dist && cross-env NODE_ENV=production vite build",
2022-01-01 01:31:04 +08:00
"build:no-cache": "pnpm clean:cache && npm run build",
2021-05-04 21:54:05 +08:00
"build-tsc": "vue-tsc --noEmit && vite build",
2022-01-01 01:31:04 +08:00
"preview": "npm run build && vite preview",
"preview:dist": "vite preview",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lib": "rimraf node_modules",
2022-07-03 02:38:58 +08:00
"format": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 && pretty-quick --check --branch main",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json && pretty-quick --branch main",
2022-01-01 01:31:04 +08:00
"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:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
2022-01-16 16:21:27 +08:00
"deploy": "npm run build && npx gh-pages -d dist",
2022-07-03 02:38:58 +08:00
"prepare": "husky install",
"postversion": "git push && git push origin --tags",
2022-01-01 01:31:04 +08:00
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
2022-07-03 02:38:58 +08:00
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"test:gzip": "npx http-server dist --cors --gzip -c-1",
"test:br": "npx http-server dist --cors --brotli -c-1"
2021-05-04 21:54:05 +08:00
},
"dependencies": {
2022-07-03 02:38:58 +08:00
"@element-plus/icons-vue": "^2.0.6",
"@vant/touch-emulator": "^1.3.2",
2022-07-10 20:42:12 +08:00
"@vueuse/core": "^8.9.1",
"@vueuse/integrations": "^8.9.1",
2021-06-12 22:19:59 +08:00
"animate.css": "^4.1.1",
2022-07-03 02:38:58 +08:00
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"dexie": "^3.2.2",
2022-07-10 20:42:12 +08:00
"element-plus": "2.2.9",
2022-01-16 16:21:27 +08:00
"lodash-es": "^4.17.21",
2022-07-03 02:38:58 +08:00
"monaco-editor": "^0.33.0",
"nanoid": "^4.0.0",
2021-05-04 21:54:05 +08:00
"normalize.css": "^8.0.1",
2021-05-12 11:53:17 +08:00
"nprogress": "^1.0.0-1",
2022-07-03 02:38:58 +08:00
"pinia": "^2.0.14",
2022-01-01 01:31:04 +08:00
"qrcode": "^1.5.0",
2022-07-03 02:38:58 +08:00
"qs": "^6.11.0",
"vant": "3.5.2",
"vue": "3.2.37",
"vue-router": "^4.0.16",
2022-01-01 01:31:04 +08:00
"vuedraggable": "^4.1.0"
2021-05-04 21:54:05 +08:00
},
"devDependencies": {
2022-07-03 02:38:58 +08:00
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/lodash-es": "^4.17.6",
2022-07-10 20:42:12 +08:00
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
2022-07-03 02:38:58 +08:00
"@vitejs/plugin-legacy": "^1.8.2",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
2021-05-12 11:53:17 +08:00
"commitizen": "^4.2.4",
2022-01-16 16:21:27 +08:00
"conventional-changelog-cli": "^2.2.2",
2021-06-24 01:38:30 +08:00
"cross-env": "^7.0.3",
2022-07-03 02:38:58 +08:00
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
2022-07-10 20:42:12 +08:00
"eslint-plugin-vue": "^9.2.0",
2022-07-03 02:38:58 +08:00
"husky": "^8.0.1",
2022-07-10 20:42:12 +08:00
"lint-staged": "^12.5.0",
2022-07-03 02:38:58 +08:00
"postcss": "^8.4.14",
2022-07-10 20:42:12 +08:00
"postcss-html": "^1.5.0",
2022-07-03 02:38:58 +08:00
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"sass": "1.53.0",
"stylelint": "^14.9.1",
2022-07-10 20:42:12 +08:00
"stylelint-config-html": "^1.1.0",
2022-01-01 01:31:04 +08:00
"stylelint-config-prettier": "^9.0.3",
2022-07-03 02:38:58 +08:00
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
2022-01-01 01:31:04 +08:00
"stylelint-order": "^5.0.0",
2022-07-10 20:42:12 +08:00
"stylelint-scss": "^4.3.0",
2022-07-03 02:38:58 +08:00
"typescript": "^4.7.4",
"unplugin-auto-import": "^0.9.2",
2022-07-10 20:42:12 +08:00
"unplugin-vue-components": "^0.21.1",
"unplugin-vue-define-options": "^0.6.2",
"vite": "2.9.14",
"vite-plugin-checker": "^0.4.8",
2022-07-03 02:38:58 +08:00
"vite-plugin-windicss": "^1.8.6",
"vue-eslint-parser": "^9.0.3",
2022-07-10 20:42:12 +08:00
"vue-tsc": "^0.38.3",
2022-07-03 02:38:58 +08:00
"windicss": "^3.5.6"
2021-05-04 21:54:05 +08:00
},
"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",
2022-01-01 01:31:04 +08:00
"engines": {
2022-07-03 02:38:58 +08:00
"node": ">=14"
2022-01-01 01:31:04 +08:00
},
2021-05-04 21:54:05 +08:00
"lint-staged": {
2022-01-01 01:31:04 +08:00
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
2022-07-03 02:38:58 +08:00
"*.json": [
2022-01-01 01:31:04 +08:00
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
2022-07-03 02:38:58 +08:00
},
"packageManager": "^pnpm@6.32.4"
2021-05-04 21:54:05 +08:00
}