No description
  • TypeScript 55.1%
  • HTML 42.7%
  • CSS 1.1%
  • JavaScript 1%
Find a file
mihai205 84f2eef7b3
Merge pull request #112 from mihai205/dev
fix: add missing environment variables for analytics in Dockerfile
2026-06-26 16:36:23 +03:00
.claude feat: add FAQ, Occasions, Pricing, and Social Proof components with styling and localization support 2026-06-13 10:29:25 +03:00
.github fix: add GITHUB_TOKEN environment variable for typecheck step in CI workflow 2026-06-16 17:52:49 +03:00
.husky Security/secret hardening (#30) 2026-06-16 14:51:30 +03:00
coverage Add tests for useViewportWidth hook and schemas 2026-06-21 15:32:52 +03:00
docs feat: implement design management features for admin, including availability controls and UI updates 2026-06-23 18:34:33 +03:00
public feat: implement design management features for admin, including availability controls and UI updates 2026-06-23 18:34:33 +03:00
scripts Add new invite templates and localization support 2026-06-19 06:48:46 +03:00
src fix: reorder import statements for consistency in main.tsx 2026-06-26 15:57:37 +03:00
.dockerignore Security/secret hardening (#30) 2026-06-16 14:51:30 +03:00
.env.example fix: update comment in .env.example to clarify Sentry DSN usage 2026-06-23 18:54:43 +03:00
.gitignore feat: add design rules management components for admin, including per-event and per-user dialogs 2026-06-23 19:02:22 +03:00
.gitleaks.toml Security/secret hardening (#30) 2026-06-16 14:51:30 +03:00
.npmrc fix: remove 24h hold-back for @mihai205/* packages in .npmrc and update comments in pnpm-workspace.yaml 2026-06-16 23:43:46 +03:00
.prettierrc.mjs Security/secret hardening (#30) 2026-06-16 14:51:30 +03:00
.releaserc chore: add semantic version 2025-07-28 08:07:48 +03:00
CHANGELOG.md chore(release): 1.17.1 [skip ci] 2026-06-11 10:18:45 +03:00
Dockerfile fix: add missing environment variables for analytics in Dockerfile 2026-06-26 16:35:26 +03:00
eslint.config.js Add new layout components for event themes: Stage, Stories, and Timeline 2026-06-21 22:59:14 +03:00
FRONTPAGE_AUDIT.md feat: add paired theme components and background assets 2026-06-23 13:09:32 +03:00
index.html feat: Introduce branded feedback components (Alert, ConfirmDialog, Toast) with custom styles and tokens 2026-06-25 13:46:22 +03:00
LICENSE Initial commit 2025-07-19 09:47:50 +03:00
nginx.conf Security/secret hardening (#30) 2026-06-16 14:51:30 +03:00
package.json feat(invitations): enhance invitation creation with redemption code and usage limits 2026-06-24 21:03:51 +03:00
pnpm-lock.yaml feat(invitations): enhance invitation creation with redemption code and usage limits 2026-06-24 21:03:51 +03:00
pnpm-workspace.yaml feat: implement table organizer feature with seating management 2026-06-17 07:02:16 +03:00
README.md feat: add folder structure and login page 2025-07-20 14:48:02 +03:00
security-headers.conf feat: update Content-Security-Policy to include media-src for enhanced security 2026-06-24 10:36:34 +03:00
tsconfig.app.json fix: add exclude patterns for test files in tsconfig.app.json 2026-06-21 17:28:40 +03:00
tsconfig.json feat: add folder structure and login page 2025-07-20 14:48:02 +03:00
tsconfig.node.json feat: add folder structure and login page 2025-07-20 14:48:02 +03:00
vite.config.ts feat: Introduce branded feedback components (Alert, ConfirmDialog, Toast) with custom styles and tokens 2026-06-25 13:46:22 +03:00
vitest.config.ts Add tests for useViewportWidth hook and schemas 2026-06-21 15:32:52 +03:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      ...tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      ...tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      ...tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])