Initial commit
parents
Showing
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "vsa-frontend", | |||
"private": true, | |||
"version": "0.0.0", | |||
"type": "module", | |||
"scripts": { | |||
"dev": "vite", | |||
"dev:mock": "vite --mode mock", | |||
"build:test": "vite build --mode test", | |||
"build:stage": "vite build --mode stage", | |||
"build": "tsc && vite build", | |||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | |||
"preview": "vite preview", | |||
"test": "vitest --reporter=junit --outputFile=./test/test-results.xml", | |||
"test1": "vitest run --coverage.enabled --reporter=junit --coverage.reporter=json-summary", | |||
"test:local": "vitest --coverage", | |||
"test:cobertura": "vitest run --coverage.enabled --reporter=junit" | |||
}, | |||
"dependencies": { | |||
"axios": "^1.4.0", | |||
"date-fns": "^2.30.0", | |||
"lodash": "^4.17.21", | |||
"react": "^18.2.0", | |||
"react-dom": "^18.2.0", | |||
"react-hook-speech-to-text": "^0.8.0" | |||
}, | |||
"devDependencies": { | |||
"@testing-library/jest-dom": "^6.1.3", | |||
"@testing-library/react": "^14.0.0", | |||
"@types/react": "^18.2.15", | |||
"@types/react-dom": "^18.2.7", | |||
"@typescript-eslint/eslint-plugin": "^6.0.0", | |||
"@typescript-eslint/parser": "^6.0.0", | |||
"@vitejs/plugin-react": "^4.0.3", | |||
"@vitest/coverage-v8": "^0.34.5", | |||
"autoprefixer": "^10.4.14", | |||
"eslint": "^8.45.0", | |||
"eslint-plugin-react-hooks": "^4.6.0", | |||
"eslint-plugin-react-refresh": "^0.4.3", | |||
"express": "^4.18.2", | |||
"jsdom": "^22.1.0", | |||
"postcss": "^8.4.27", | |||
"tailwindcss": "^3.3.3", | |||
"typescript": "^5.0.2", | |||
"vite": "^4.5.0", | |||
"vitest": "^0.34.5" | |||
} | |||
} |
postcss.config.js
0 → 100644
public/vite.svg
0 → 100644
src/App.css
0 → 100644
src/App.tsx
0 → 100644
9.93 KB
src/assets/react.svg
0 → 100644
src/index.css
0 → 100644
src/main.tsx
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