Dominion uses drones, hidden and handheld cameras to expose the dark underbelly of modern animal agriculture, questioning the morality and validity of humankind's dominion over the animal kingdom. https://watchdominion.org
  • TypeScript 93.1%
  • HTML 6.9%
Find a file
2026-05-15 09:42:01 +02:00
public Refactor base 2024-02-05 14:36:42 +01:00
src Update dependencies 2026-03-27 15:10:05 +01:00
.editorconfig Refactor base 2024-02-05 14:36:42 +01:00
.env.example Delete unused (and unquoted/invalid) env var 2024-09-11 11:38:52 +02:00
.gitattributes Setup Laravel Jetstream project with React 2022-02-05 17:54:17 +01:00
.gitignore Remove unnecessary files 2024-02-05 15:07:19 +01:00
.prettierignore Add prettier 2024-09-30 19:13:22 +02:00
eslint.config.js Update dependencies 2026-03-27 15:10:05 +01:00
index.html Update dependencies 2026-03-27 15:10:05 +01:00
nixpacks.toml Update nixpkgs archive 2026-05-15 09:42:01 +02:00
package.json Update dependencies 2026-03-27 15:10:05 +01:00
pnpm-lock.yaml Update dependencies 2026-03-27 15:10:05 +01:00
postcss.config.js Prettier: format everything 2024-09-30 19:13:22 +02:00
README.md Prettier: format everything 2024-09-30 19:13:22 +02:00
tailwind.config.js Prettier: format everything 2024-09-30 19:13:22 +02:00
tsconfig.json Refactor base 2024-02-05 14:36:42 +01:00
tsconfig.node.json Refactor base 2024-02-05 14:36:42 +01:00
vite.config.ts Prettier: format everything 2024-09-30 19:13:22 +02: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:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: "latest",
    sourceType: "module",
    project: ["./tsconfig.json", "./tsconfig.node.json"],
    tsconfigRootDir: __dirname,
  },
};
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list