Initialize by clx-cli
上级
正在显示
.env
0 → 100644
.env.development
0 → 100644
.env.pre
0 → 100644
.env.production
0 → 100644
.env.test
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
README.md
0 → 100644
components.d.ts
0 → 100644
cypress.config.ts
0 → 100644
cypress/e2e/example.cy.ts
0 → 100644
cypress/e2e/tsconfig.json
0 → 100644
cypress/fixtures/example.json
0 → 100644
cypress/support/commands.ts
0 → 100644
cypress/support/e2e.ts
0 → 100644
env.d.ts
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
{ | |||
"name": "v", | |||
"version": "0.0.0", | |||
"scripts": { | |||
"dev": "vite", | |||
"build": "run-p type-check build-only", | |||
"preview": "vite preview --port 4173", | |||
"test:unit": "vitest --environment jsdom", | |||
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'", | |||
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'", | |||
"build-only": "vite build", | |||
"build-test": "run-p type-check && vite build --mode test", | |||
"build-pre": "run-p type-check && vite build --mode pre", | |||
"build-production": "run-p type-check && vite build --mode production", | |||
"build-development": "run-p type-check && vite build --mode development", | |||
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", | |||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" | |||
}, | |||
"engines": { | |||
"node": ">=16.0" | |||
}, | |||
"dependencies": { | |||
"element-plus": "^2.2.17", | |||
"stylelint-scss": "3.20.1", | |||
"axios": "^0.27.2", | |||
"mitt": "^3.0.0", | |||
"nprogress": "^0.2.0", | |||
"pinia": "^2.0.21", | |||
"store": "^2.0.12", | |||
"tailwindcss": "^3.1.8", | |||
"ua-parser-js": "^1.0.2", | |||
"vue": "^3.2.38", | |||
"vue-router": "^4.1.5" | |||
}, | |||
"devDependencies": { | |||
"@rushstack/eslint-patch": "^1.1.4", | |||
"@types/jsdom": "^20.0.0", | |||
"@types/node": "^16.11.56", | |||
"@types/nprogress": "^0.2.0", | |||
"@types/store": "^2.0.2", | |||
"@types/ua-parser-js": "^0.7.36", | |||
"@vitejs/plugin-vue": "^3.0.3", | |||
"@vitejs/plugin-vue-jsx": "^2.0.1", | |||
"@vue/eslint-config-prettier": "^7.0.0", | |||
"@vue/eslint-config-typescript": "^11.0.0", | |||
"@vue/test-utils": "^2.0.2", | |||
"@vue/tsconfig": "^0.1.3", | |||
"autoprefixer": "^10.4.12", | |||
"cypress": "^10.7.0", | |||
"eslint": "^8.22.0", | |||
"eslint-config-airbnb-base": "^15.0.0", | |||
"eslint-plugin-cypress": "^2.12.1", | |||
"eslint-plugin-import": "^2.26.0", | |||
"eslint-plugin-vue": "^9.3.0", | |||
"jsdom": "^20.0.0", | |||
"less": "^4.1.3", | |||
"npm-run-all": "^4.1.5", | |||
"postcss": "^8.4.16", | |||
"prettier": "^2.7.1", | |||
"start-server-and-test": "^1.14.0", | |||
"typescript": "~4.7.4", | |||
"unplugin-auto-import": "^0.11.2", | |||
"unplugin-vue-components": "^0.22.7", | |||
"vite": "^3.0.9", | |||
"vite-plugin-compression": "^0.5.1", | |||
"vite-plugin-pages": "^0.26.0", | |||
"vite-plugin-pwa": "^0.13.1", | |||
"vite-plugin-svg-icons": "^2.0.1", | |||
"vite-plugin-vue-layouts": "^0.7.0", | |||
"vite-plugin-vue-setup-extend": "^0.4.0", | |||
"vitest": "^0.23.0", | |||
"vue-global-api": "^0.4.1", | |||
"vue-tsc": "^0.40.7", | |||
"workbox-window": "^6.5.4" | |||
} | |||
} |
postcss.config.js
0 → 100644
public/favicon.ico
0 → 100644
4.2 KB
src/App.vue
0 → 100644
src/api/index.ts
0 → 100644
src/api/user.ts
0 → 100644
src/assets/icons/logo.svg
0 → 100644
src/assets/icons/tooling.svg
0 → 100644
src/auto-imports.d.ts
0 → 100644
src/components/index.ts
0 → 100644
src/components/sys/SvgIcon.vue
0 → 100644
src/layouts/BlankLayout.vue
0 → 100644
src/layouts/default/index.vue
0 → 100644
src/libs/emitter.ts
0 → 100644
src/libs/request/index.ts
0 → 100644
src/libs/request/shims.d.ts
0 → 100644
src/libs/utils/baseApiUrl.ts
0 → 100644
src/libs/utils/baseStaticUrl.ts
0 → 100644
src/libs/utils/index.ts
0 → 100644
src/libs/utils/setTitle.ts
0 → 100644
src/main.ts
0 → 100644
src/pages/[...all].vue
0 → 100644
src/pages/home/index.vue
0 → 100644
src/pages/index.vue
0 → 100644
src/pages/user/index.vue
0 → 100644
src/pages/user/login/index.vue
0 → 100644
src/pages/user/regist/index.vue
0 → 100644
src/router/index.ts
0 → 100644
src/router/permission.ts
0 → 100644
src/stores/counter.ts
0 → 100644
src/stores/user.ts
0 → 100644
src/styles/base.css
0 → 100644
src/styles/main.css
0 → 100644
src/styles/tailwind.css
0 → 100644
tailwind.config.js
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.config.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.vitest.json
0 → 100644
vite.config.ts
0 → 100644