Initial commit
parents
Showing
.gitignore
0 → 100644
.husky/_/.gitignore
0 → 100644
.husky/_/husky.sh
0 → 100644
.husky/commit-msg
0 → 100644
.husky/pre-commit
0 → 100644
.prettierrc.json
0 → 100644
commitlint.config.cjs
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": "vue-ts-init", | |||
"private": true, | |||
"version": "0.0.0", | |||
"type": "module", | |||
"scripts": { | |||
"dev": "vite", | |||
"build": "vue-tsc && vite build", | |||
"preview": "vite preview", | |||
"prepare": "husky install", | |||
"commitlint": "commitlint --config commitlint.config.cjs -e -V" | |||
}, | |||
"dependencies": { | |||
"@types/qs": "^6.9.15", | |||
"@vueuse/core": "^10.9.0", | |||
"dayjs": "^1.11.11", | |||
"less": "^4.2.0", | |||
"lodash": "^4.17.21", | |||
"mitt": "^3.0.1", | |||
"naive-ui": "^2.41.0", | |||
"pinia": "^2.1.7", | |||
"pinia-plugin-persistedstate": "^3.2.1", | |||
"qs": "^6.12.1", | |||
"vite-plugin-compression": "^0.5.1", | |||
"vue": "^3.4.19", | |||
"vue-router": "^4.3.0" | |||
}, | |||
"devDependencies": { | |||
"@commitlint/cli": "^19.8.0", | |||
"@commitlint/config-conventional": "^19.8.0", | |||
"@types/lodash": "^4.17.5", | |||
"@types/node": "^20.14.2", | |||
"@vitejs/plugin-vue": "^5.0.4", | |||
"autoprefixer": "^10.4.17", | |||
"husky": "^8.0.0", | |||
"postcss": "^8.4.35", | |||
"prettier": "^3.3.2", | |||
"tailwindcss": "^3.4.1", | |||
"typescript": "^5.2.2", | |||
"unplugin-auto-import": "^0.17.5", | |||
"unplugin-vue-components": "^0.26.0", | |||
"vite": "^5.1.4", | |||
"vue-tsc": "^1.8.27" | |||
} | |||
} |
postcss.config.js
0 → 100644
prettierignore
0 → 100644
public/favicon.svg
0 → 100644
src/App.vue
0 → 100644
src/assets/css/index.less
0 → 100644
src/assets/css/reset.less
0 → 100644
src/assets/css/style.less
0 → 100644
src/assets/css/tailwind.less
0 → 100644
src/auto-import.d.ts
0 → 100644
src/configs/tailwind.ui.config.ts
0 → 100644
src/hooks/useEventBus.ts
0 → 100644
src/main.ts
0 → 100644
src/router/index.ts
0 → 100644
src/store/app/index.ts
0 → 100644
src/store/app/types.ts
0 → 100644
src/store/index.ts
0 → 100644
src/views/error/index.vue
0 → 100644
src/views/example/theme.vue
0 → 100644
src/views/layout/index.vue
0 → 100644
src/views/login/index.vue
0 → 100644
src/vite-env.d.ts
0 → 100644
tailwind.config.js
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
vite.config.ts
0 → 100644
Please
register
or
sign in
to comment