initial commit
parents
Showing
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
e2e/tsconfig.json
0 → 100644
e2e/vue.spec.ts
0 → 100644
env.d.ts
0 → 100644
eslint.config.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": "yd-email", | |||
| "version": "0.0.0", | |||
| "private": true, | |||
| "type": "module", | |||
| "engines": { | |||
| "node": "^20.19.0 || >=22.12.0" | |||
| }, | |||
| "scripts": { | |||
| "dev": "vite", | |||
| "build": "run-p type-check \"build-only {@}\" --", | |||
| "preview": "vite preview", | |||
| "test:unit": "vitest", | |||
| "test:e2e": "playwright test", | |||
| "build-only": "vite build", | |||
| "type-check": "vue-tsc --build", | |||
| "lint": "eslint . --fix", | |||
| "format": "prettier --write src/" | |||
| }, | |||
| "dependencies": { | |||
| "pinia": "^3.0.3", | |||
| "vue": "^3.5.18", | |||
| "vue-router": "^4.5.1" | |||
| }, | |||
| "devDependencies": { | |||
| "@playwright/test": "^1.54.1", | |||
| "@tsconfig/node22": "^22.0.2", | |||
| "@types/jsdom": "^21.1.7", | |||
| "@types/node": "^22.16.5", | |||
| "@vitejs/plugin-vue": "^6.0.1", | |||
| "@vitejs/plugin-vue-jsx": "^5.0.1", | |||
| "@vitest/eslint-plugin": "^1.3.4", | |||
| "@vue/eslint-config-prettier": "^10.2.0", | |||
| "@vue/eslint-config-typescript": "^14.6.0", | |||
| "@vue/test-utils": "^2.4.6", | |||
| "@vue/tsconfig": "^0.7.0", | |||
| "eslint": "^9.31.0", | |||
| "eslint-plugin-playwright": "^2.2.0", | |||
| "eslint-plugin-vue": "~10.3.0", | |||
| "jiti": "^2.4.2", | |||
| "jsdom": "^26.1.0", | |||
| "npm-run-all2": "^8.0.4", | |||
| "prettier": "3.6.2", | |||
| "typescript": "~5.8.0", | |||
| "vite": "^7.0.6", | |||
| "vite-plugin-vue-devtools": "^8.0.0", | |||
| "vitest": "^3.2.4", | |||
| "vue-tsc": "^3.0.4" | |||
| } | |||
| } |
playwright.config.ts
0 → 100644
public/favicon.ico
0 → 100644
File added
src/App.vue
0 → 100644
src/__tests__/App.spec.ts
0 → 100644
src/main.ts
0 → 100644
src/router/index.ts
0 → 100644
src/stores/counter.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
Please
register
or
sign in
to comment