package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "frontend-vite",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "merge-schemas": "tsx schemas/merge-schemas",
  9. "relay": "yarn merge-schemas && relay-compiler",
  10. "build": "tsc && vite build",
  11. "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
  12. "preview": "vite preview --open"
  13. },
  14. "dependencies": {
  15. "@carbon/icons-react": "^11.34.1",
  16. "@heroicons/react": "^2.0.18",
  17. "@monaco-editor/react": "^4.6.0",
  18. "@stylexjs/stylex": "^0.6.1",
  19. "graphql": "^16.8.1",
  20. "immer": "^10.0.3",
  21. "immutability-helper": "^3.1.1",
  22. "jotai": "^2.6.1",
  23. "jotai-immer": "^0.3.0",
  24. "localforage": "^1.10.0",
  25. "monaco-editor": "^0.48.0",
  26. "mp4box": "^0.5.2",
  27. "pts": "^0.12.8",
  28. "react": "^18.2.0",
  29. "react-daisyui": "^4.1.0",
  30. "react-device-detect": "^2.2.3",
  31. "react-dom": "^18.2.0",
  32. "react-dropzone": "^14.2.3",
  33. "react-error-boundary": "^4.0.11",
  34. "react-photo-album": "^2.3.0",
  35. "react-pts-canvas": "^0.5.2",
  36. "react-relay": "^16.2.0",
  37. "react-router-dom": "^6.15.0",
  38. "relay-runtime": "^16.2.0",
  39. "serialize-error": "^11.0.3",
  40. "use-immer": "^0.9.0",
  41. "use-resize-observer": "^9.1.0"
  42. },
  43. "devDependencies": {
  44. "@graphql-tools/load-files": "^7.0.0",
  45. "@graphql-tools/merge": "^9.0.4",
  46. "@tailwindcss/typography": "^0.5.9",
  47. "@types/dom-webcodecs": "^0.1.11",
  48. "@types/invariant": "^2.2.37",
  49. "@types/node": "^20.14.10",
  50. "@types/react": "^18.2.47",
  51. "@types/react-dom": "^18.2.7",
  52. "@types/react-relay": "^16.0.6",
  53. "@types/relay-runtime": "^14.1.13",
  54. "@typescript-eslint/eslint-plugin": "^6.18.1",
  55. "@typescript-eslint/parser": "^6.18.1",
  56. "@vitejs/plugin-react": "^4.2.1",
  57. "autoprefixer": "^10.4.15",
  58. "babel-plugin-relay": "^16.2.0",
  59. "babel-plugin-strip-invariant": "^1.0.0",
  60. "daisyui": "^3.6.3",
  61. "eslint": "^8.48.0",
  62. "eslint-config-prettier": "^9.0.0",
  63. "eslint-import-resolver-alias": "^1.1.2",
  64. "eslint-import-resolver-typescript": "^3.6.3",
  65. "eslint-plugin-import": "^2.28.1",
  66. "eslint-plugin-prettier": "^5.1.3",
  67. "eslint-plugin-react": "^7.33.2",
  68. "eslint-plugin-react-hooks": "^4.6.0",
  69. "eslint-plugin-react-refresh": "^0.4.3",
  70. "invariant": "^2.2.4",
  71. "postcss": "^8.4.28",
  72. "postinstall-postinstall": "^2.1.0",
  73. "prettier": "^3.0.3",
  74. "relay-compiler": "^16.2.0",
  75. "sass": "^1.66.1",
  76. "strip-ansi": "^7.1.0",
  77. "tailwindcss": "^3.3.3",
  78. "tsx": "^4.16.2",
  79. "typescript": ">=4.3.5 <5.4.0",
  80. "vite": "^5.0.11",
  81. "vite-plugin-babel": "^1.2.0",
  82. "vite-plugin-relay": "^2.0.0",
  83. "vite-plugin-stylex-dev": "^0.5.2"
  84. },
  85. "resolutions": {
  86. "wrap-ansi": "7.0.0"
  87. },
  88. "relay": {
  89. "src": "./src/",
  90. "schema": "./schema.graphql",
  91. "language": "typescript",
  92. "eagerEsModules": true,
  93. "exclude": [
  94. "**/node_modules/**",
  95. "**/__mocks__/**",
  96. "**/__generated__/**"
  97. ]
  98. }
  99. }