Initial commit
parents
Showing
.editorconfig
0 → 100644
.env
0 → 100644
.env.prod
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
cypress.config.ts
0 → 100644
cypress/downloads/downloads.html.crdownload
0 → 100644
File added
cypress/e2e/example.cy.ts
0 → 100644
cypress/fixtures/example.json
0 → 100644
cypress/support/commands.ts
0 → 100644
cypress/support/e2e.ts
0 → 100644
cypress/tsconfig.json
0 → 100644
env.d.ts
0 → 100644
eslint.config.js
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
| { | |||
| "name": "vue-project", | |||
| "version": "0.0.0", | |||
| "private": true, | |||
| "type": "module", | |||
| "scripts": { | |||
| "dev": "vite", | |||
| "build": "run-p type-check \"build-only {@}\" --", | |||
| "preview": "vite preview", | |||
| "test:unit": "vitest", | |||
| "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", | |||
| "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", | |||
| "build-only": "vite build", | |||
| "type-check": "vue-tsc --build", | |||
| "lint": "eslint . --fix", | |||
| "format": "prettier --write src/" | |||
| }, | |||
| "dependencies": { | |||
| "ant-design-vue": "^4.2.6", | |||
| "vue": "^3.5.13", | |||
| "vue-router": "^4.4.5" | |||
| }, | |||
| "resolutions": { | |||
| "string-width": "3.1.0", | |||
| "strip-ansi": "5.2.0" | |||
| }, | |||
| "devDependencies": { | |||
| "@tsconfig/node22": "^22.0.0", | |||
| "@types/jsdom": "^21.1.7", | |||
| "@types/node": "^22.9.3", | |||
| "@types/tailwindcss": "^3.1.0", | |||
| "@vitejs/plugin-vue": "^5.2.1", | |||
| "@vitejs/plugin-vue-jsx": "^4.1.1", | |||
| "@vitest/eslint-plugin": "1.1.10", | |||
| "@vue/eslint-config-prettier": "^10.1.0", | |||
| "@vue/eslint-config-typescript": "^14.1.3", | |||
| "@vue/test-utils": "^2.4.6", | |||
| "@vue/tsconfig": "^0.7.0", | |||
| "autoprefixer": "^10.4.20", | |||
| "cypress": "^13.16.0", | |||
| "eslint": "^9.14.0", | |||
| "eslint-plugin-cypress": "^4.1.0", | |||
| "eslint-plugin-tailwindcss": "^3.17.5", | |||
| "eslint-plugin-vue": "^9.30.0", | |||
| "jsdom": "^25.0.1", | |||
| "less": "^4.2.1", | |||
| "less-loader": "^12.2.0", | |||
| "npm-run-all2": "^7.0.1", | |||
| "postcss": "^8.4.49", | |||
| "prettier": "^3.3.3", | |||
| "pug": "^3.0.3", | |||
| "pug-plain-loader": "^1.1.0", | |||
| "pug-plugin": "^5.3.0", | |||
| "start-server-and-test": "^2.0.8", | |||
| "tailwindcss": "^3.4.15", | |||
| "typescript": "~5.6.3", | |||
| "unplugin-auto-import": "^0.18.6", | |||
| "unplugin-vue-components": "^0.27.5", | |||
| "vite": "^6.0.1", | |||
| "vite-plugin-vue-devtools": "^7.6.5", | |||
| "vitest": "^2.1.5", | |||
| "vue-tsc": "^2.1.10" | |||
| } | |||
| } |
public/favicon.ico
0 → 100644
File added
src/App.vue
0 → 100644
src/assets/base.css
0 → 100644
src/assets/logo.svg
0 → 100644
src/assets/main.css
0 → 100644
src/assets/tailwind.css
0 → 100644
src/auto-imports.d.ts
0 → 100644
src/components.d.ts
0 → 100644
src/components/HelloWorld.vue
0 → 100644
src/components/TheWelcome.vue
0 → 100644
src/components/WelcomeItem.vue
0 → 100644
src/components/__tests__/HelloWorld.spec.ts
0 → 100644
src/components/icons/IconCommunity.vue
0 → 100644
src/components/icons/IconDocumentation.vue
0 → 100644
src/components/icons/IconEcosystem.vue
0 → 100644
src/components/icons/IconSupport.vue
0 → 100644
src/components/icons/IconTooling.vue
0 → 100644
src/main.ts
0 → 100644
src/plugins/switchTheme.ts
0 → 100644
src/router/index.ts
0 → 100644
src/styles/theme.default.less
0 → 100644
src/views/AboutView.vue
0 → 100644
src/views/HomeView.vue
0 → 100644
src/vite-env.d.ts
0 → 100644
tailwind.config.ts
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
tsconfig.vitest.json
0 → 100644
vite.config.ts
0 → 100644
vitest.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.
Please
register
or
sign in
to comment