package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "private": true,
  3. "sideEffects": false,
  4. "type": "module",
  5. "scripts": {
  6. "build": "remix vite:build",
  7. "dev": "remix vite:dev",
  8. "lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
  9. "start": "remix-serve ./build/server/index.js",
  10. "typecheck": "tsc"
  11. },
  12. "dependencies": {
  13. "@remix-run/node": "*",
  14. "@remix-run/react": "*",
  15. "@remix-run/serve": "*",
  16. "isbot": "^4.1.0",
  17. "react": "^18.2.0",
  18. "react-dom": "^18.2.0"
  19. },
  20. "devDependencies": {
  21. "@remix-run/dev": "*",
  22. "@types/react": "^18.2.20",
  23. "@types/react-dom": "^18.2.7",
  24. "@typescript-eslint/eslint-plugin": "^6.7.4",
  25. "@typescript-eslint/parser": "^6.7.4",
  26. "autoprefixer": "^10.4.19",
  27. "eslint": "^8.38.0",
  28. "eslint-import-resolver-typescript": "^3.6.1",
  29. "eslint-plugin-import": "^2.28.1",
  30. "eslint-plugin-jsx-a11y": "^6.7.1",
  31. "eslint-plugin-react": "^7.33.2",
  32. "eslint-plugin-react-hooks": "^4.6.0",
  33. "postcss": "^8.4.38",
  34. "tailwindcss": "^3.4.4",
  35. "typescript": "^5.1.6",
  36. "vite": "^5.1.0",
  37. "vite-tsconfig-paths": "^4.2.1"
  38. },
  39. "engines": {
  40. "node": ">=20.0.0"
  41. }
  42. }