Initial commit
parents
Showing
.commitlintrc.cjs
0 → 100644
.editorconfig
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.husky/commit-msg
0 → 100644
.husky/pre-commit
0 → 100644
.lintstagedrc.cjs
0 → 100644
.markdownlint.json
0 → 100644
.npmrc
0 → 100644
.prettierrc.cjs
0 → 100644
.release-it.cjs
0 → 100644
.stylelintrc.cjs
0 → 100644
.vscode/extensions.json
0 → 100644
.vscode/settings.json
0 → 100644
README.md
0 → 100644
androidPrivacy.json
0 → 100644
components.d.ts
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
| { | |||
| "name": "boilerplate-uni-app-vue3", | |||
| "version": "0.0.0", | |||
| "scripts": { | |||
| "build:app": "uni build -p app", | |||
| "build:custom": "uni build -p", | |||
| "build:h5": "uni build", | |||
| "build:h5:ssr": "uni build --ssr", | |||
| "build:mp-alipay": "cross-env UNI_OUTPUT_DIR=dist/mp-alipay uni build -p mp-alipay", | |||
| "build:mp-baidu": "cross-env UNI_OUTPUT_DIR=dist/mp-baidu uni build -p mp-baidu", | |||
| "build:mp-kuaishou": "cross-env UNI_OUTPUT_DIR=dist/mp-kuaishou uni build -p mp-kuaishou", | |||
| "build:mp-lark": "cross-env UNI_OUTPUT_DIR=dist/mp-lark uni build -p mp-lark", | |||
| "build:mp-qq": "cross-env UNI_OUTPUT_DIR=dist/mp-qq uni build -p mp-qq", | |||
| "build:mp-toutiao": "cross-env UNI_OUTPUT_DIR=dist/mp-toutiao uni build -p mp-toutiao", | |||
| "build:mp-weixin": "cross-env UNI_OUTPUT_DIR=dist/mp-weixin uni build -p mp-weixin", | |||
| "build:quickapp-webview": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview uni build -p quickapp-webview", | |||
| "build:quickapp-webview-huawei": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview-huawei uni build -p quickapp-webview-huawei", | |||
| "build:quickapp-webview-union": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview-union uni build -p quickapp-webview-union", | |||
| "check:deps": "ncu", | |||
| "check:types": "vue-tsc --noEmit", | |||
| "commit": "git-cz", | |||
| "dev:app": "uni -p app", | |||
| "dev:custom": "uni -p", | |||
| "dev:h5": "uni", | |||
| "dev:h5:ssr": "uni --ssr", | |||
| "dev:mp-alipay": "cross-env UNI_OUTPUT_DIR=dist/mp-alipay uni -p mp-alipay", | |||
| "dev:mp-baidu": "cross-env UNI_OUTPUT_DIR=dist/mp-baidu uni -p mp-baidu", | |||
| "dev:mp-kuaishou": "cross-env UNI_OUTPUT_DIR=dist/mp-kuaishou uni -p mp-kuaishou", | |||
| "dev:mp-lark": "cross-env UNI_OUTPUT_DIR=dist/mp-lark uni -p mp-lark", | |||
| "dev:mp-qq": "cross-env UNI_OUTPUT_DIR=dist/mp-qq uni -p mp-qq", | |||
| "dev:mp-toutiao": "cross-env UNI_OUTPUT_DIR=dist/mp-toutiao uni -p mp-toutiao", | |||
| "dev:mp-weixin": "cross-env UNI_OUTPUT_DIR=dist/mp-weixin uni -p mp-weixin", | |||
| "dev:quickapp-webview": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview uni -p quickapp-webview", | |||
| "dev:quickapp-webview-huawei": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview-huawei uni -p quickapp-webview-huawei", | |||
| "dev:quickapp-webview-union": "cross-env UNI_OUTPUT_DIR=dist/quickapp-webview-union uni -p quickapp-webview-union", | |||
| "lint": "npm run lint:eslint && npm run lint:markdownlint && npm run lint:stylelint && vue-tsc --noEmit", | |||
| "lint:eslint": "eslint . --fix --ext=.js,.cjs,.mjs,.jsx,.ts,.cts,.mts,.tsx,.vue,.svelte,.yaml,.yml,.json,.jsonc,.json5 --ignore-path=.gitignore", | |||
| "lint:markdownlint": "markdownlint . --fix --ignore-path=.gitignore", | |||
| "lint:stylelint": "stylelint \"./**/*.{css,less,scss,sass,vue,svelte}\" --fix --allow-empty-input --ignore-path=.gitignore", | |||
| "prepare": "is-ci || husky install", | |||
| "release": "release-it", | |||
| "watch:mp-alipay": "nodemon --watch dist/mp-alipay/pages --ext axml --exec \"esmo\" ./scripts/patch-mp-alipay.mts" | |||
| }, | |||
| "config": { | |||
| "commitizen": { | |||
| "path": "@commitlint/prompt" | |||
| } | |||
| }, | |||
| "dependencies": { | |||
| "@dcloudio/uni-app": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-app-plus": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-components": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-h5": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-alipay": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-baidu": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-kuaishou": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-lark": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-qq": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-toutiao": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-mp-weixin": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-quickapp-webview": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-ui": "^1.4.14", | |||
| "@vueuse/core": "^8.2.6", | |||
| "@vueuse/integrations": "^8.2.6", | |||
| "change-case": "^4.1.2", | |||
| "color": "^4.2.3", | |||
| "dayjs": "^1.11.1", | |||
| "esno": "^0.14.1", | |||
| "lodash-es": "^4.17.21", | |||
| "pinia": "^2.0.13", | |||
| "query-string": "^7.1.1", | |||
| "ramda": "^0.28.0", | |||
| "statuses": "^2.0.1", | |||
| "thorui-uni": "^1.7.2", | |||
| "vue": "^3.2.33", | |||
| "vue-query": "^1.22.3" | |||
| }, | |||
| "devDependencies": { | |||
| "@babel/core": "^7.17.9", | |||
| "@babel/eslint-parser": "^7.17.0", | |||
| "@commitlint/cli": "^16.2.3", | |||
| "@commitlint/config-conventional": "^16.2.1", | |||
| "@commitlint/prompt": "^16.2.3", | |||
| "@dcloudio/types": "^2.6.4", | |||
| "@dcloudio/uni-automator": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/uni-cli-shared": "^3.0.0-alpha-3040420220402003", | |||
| "@dcloudio/vite-plugin-uni": "^3.0.0-alpha-3040420220402003", | |||
| "@modyqyw/fabric": "^5.0.0-0", | |||
| "@modyqyw/vite-plugin-eslint": "^1.2.0", | |||
| "@tailwindcss/aspect-ratio": "^0.4.0", | |||
| "@tailwindcss/line-clamp": "^0.3.1", | |||
| "@tailwindcss/typography": "^0.5.2", | |||
| "@types/color": "^3.0.3", | |||
| "@types/lodash-es": "^4.17.6", | |||
| "@types/ramda": "^0.28.11", | |||
| "@types/statuses": "^2.0.0", | |||
| "@types/tailwindcss": "^3.0.10", | |||
| "@typescript-eslint/eslint-plugin": "^5.20.0", | |||
| "@typescript-eslint/parser": "^5.20.0", | |||
| "@vitejs/plugin-vue": "^2.3.1", | |||
| "@vitejs/plugin-vue-jsx": "^1.3.10", | |||
| "@vue/tsconfig": "^0.1.3", | |||
| "commitizen": "^4.2.4", | |||
| "cross-env": "^7.0.3", | |||
| "eslint": "^8.13.0", | |||
| "husky": "^7.0.4", | |||
| "is-ci": "^3.0.1", | |||
| "lint-staged": "^12.3.8", | |||
| "markdownlint-cli": "^0.31.1", | |||
| "npm-check-updates": "^12.5.9", | |||
| "picocolors": "^1.0.0", | |||
| "postcss": "^8.4.12", | |||
| "postcss-preset-env": "^7.4.3", | |||
| "prettier": "^2.6.2", | |||
| "release-it": "^14.14.2", | |||
| "rimraf": "^3.0.2", | |||
| "sass": "^1.50.1", | |||
| "shelljs": "^0.8.5", | |||
| "stylelint": "^14.7.1", | |||
| "tailwindcss": "^3.0.24", | |||
| "type-fest": "^2.12.2", | |||
| "typescript": "^4.6.3", | |||
| "vite": "^2.9.5", | |||
| "vite-plugin-env-compatible": "^1.1.1", | |||
| "vite-plugin-inspect": "^0.5.0", | |||
| "vite-plugin-stylelint": "^2.1.0", | |||
| "vue-tsc": "^0.34.7" | |||
| } | |||
| } |
renovate.json
0 → 100644
scripts/patch-mp-alipay.mts
0 → 100644
scripts/update-manifest.mts
0 → 100644
src/App.vue
0 → 100644
src/components/VSpacer.vue
0 → 100644
src/components/index.ts
0 → 100644
src/composables/.gitkeep
0 → 100644
src/constants/index.ts
0 → 100644
src/global.d.ts
0 → 100644
src/helpers/action-sheet.ts
0 → 100644
src/helpers/index.ts
0 → 100644
src/helpers/loading.ts
0 → 100644
src/helpers/modal.ts
0 → 100644
src/helpers/request.ts
0 → 100644
src/helpers/storage.ts
0 → 100644
src/helpers/toast.ts
0 → 100644
src/main.ts
0 → 100644
src/manifest.json
0 → 100644
src/pages.json
0 → 100644
src/pages/index/index.vue
0 → 100644
src/static/logo.png
0 → 100644
3.93 KB
src/stores/counter.ts
0 → 100644
src/stores/index.ts
0 → 100644
src/styles/global.scss
0 → 100644
src/styles/preflight.css
0 → 100644
src/styles/tailwind.css
0 → 100644
src/styles/variables.scss
0 → 100644
tailwind.config.cjs
0 → 100644
tsconfig.json
0 → 100644
vite.config.ts
0 → 100644
yarn.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.