package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "pilotdeck-ui",
  3. "version": "0.1.0",
  4. "private": true,
  5. "description": "PilotDeck Web UI — talks to src/gateway via ui/server/pilotdeck-bridge.js.",
  6. "type": "module",
  7. "main": "server/index.js",
  8. "scripts": {
  9. "predev": "node ../scripts/bootstrap-pilotdeck-config.mjs",
  10. "dev": "node ../scripts/dev-launcher.mjs",
  11. "dev:concurrent": "concurrently --kill-others-on-fail --names gateway,server,client \"npm:dev:gateway\" \"npm:dev:server\" \"npm:dev:client\"",
  12. "dev:gateway": "npm --prefix .. run server",
  13. "dev:server": "node --import tsx server/index.js",
  14. "dev:client": "vite",
  15. "server": "node --import tsx server/index.js",
  16. "gateway": "npm --prefix .. run server",
  17. "client": "vite",
  18. "build": "vite build",
  19. "preview": "vite preview",
  20. "typecheck": "tsc --noEmit -p tsconfig.json",
  21. "lint": "eslint src/",
  22. "lint:fix": "eslint src/ --fix",
  23. "test": "vitest run",
  24. "test:watch": "vitest",
  25. "start": "npm run build && npm run start:built",
  26. "start:built": "concurrently --kill-others-on-fail --names gateway,server \"npm:gateway\" \"npm:server\"",
  27. "postinstall": "node scripts/fix-node-pty.js"
  28. },
  29. "dependencies": {
  30. "@codemirror/language": "^6.12.3",
  31. "@codemirror/lang-css": "^6.3.1",
  32. "@codemirror/lang-html": "^6.4.9",
  33. "@codemirror/lang-javascript": "^6.2.4",
  34. "@codemirror/lang-json": "^6.0.1",
  35. "@codemirror/lang-markdown": "^6.3.3",
  36. "@codemirror/lang-python": "^6.2.1",
  37. "@codemirror/view": "^6.43.0",
  38. "@codemirror/merge": "^6.11.1",
  39. "@codemirror/state": "^6.6.0",
  40. "@codemirror/theme-one-dark": "^6.1.2",
  41. "@fontsource-variable/inter": "^5.2.8",
  42. "@iarna/toml": "^2.2.5",
  43. "@octokit/rest": "^22.0.0",
  44. "@radix-ui/react-slot": "^1.2.4",
  45. "@replit/codemirror-minimap": "^0.5.2",
  46. "@tailwindcss/typography": "^0.5.16",
  47. "@uiw/react-codemirror": "^4.23.13",
  48. "@xterm/addon-clipboard": "^0.1.0",
  49. "@xterm/addon-fit": "^0.11.0",
  50. "@xterm/addon-web-links": "^0.11.0",
  51. "@xterm/addon-webgl": "^0.19.0",
  52. "@xterm/xterm": "^5.5.0",
  53. "@lezer/highlight": "^1.2.3",
  54. "bcrypt": "^6.0.0",
  55. "better-sqlite3": "^12.6.2",
  56. "chokidar": "^4.0.3",
  57. "class-variance-authority": "^0.7.1",
  58. "clsx": "^2.1.1",
  59. "cors": "^2.8.5",
  60. "cross-spawn": "^7.0.3",
  61. "express": "^4.18.2",
  62. "fuse.js": "^7.0.0",
  63. "gray-matter": "^4.0.3",
  64. "i18next": "^26.3.0",
  65. "i18next-browser-languagedetector": "^8.2.0",
  66. "jsonwebtoken": "^9.0.2",
  67. "jszip": "^3.10.1",
  68. "katex": "^0.16.25",
  69. "lucide-react": "^0.515.0",
  70. "mime-types": "^3.0.1",
  71. "multer": "^2.0.1",
  72. "node-fetch": "^2.7.0",
  73. "node-pty": "^1.1.0-beta34",
  74. "react": "^18.2.0",
  75. "react-dom": "^18.2.0",
  76. "react-dropzone": "^15.0.0",
  77. "react-error-boundary": "^4.1.2",
  78. "react-i18next": "^16.5.3",
  79. "react-markdown": "^10.1.0",
  80. "react-router-dom": "^6.8.1",
  81. "react-syntax-highlighter": "^15.6.1",
  82. "rehype-katex": "^7.0.1",
  83. "rehype-raw": "^7.0.0",
  84. "remark-gfm": "^4.0.0",
  85. "remark-math": "^6.0.0",
  86. "sqlite": "^5.1.1",
  87. "sqlite3": "^5.1.7",
  88. "tailwind-merge": "^3.3.1",
  89. "web-push": "^3.6.7",
  90. "ws": "^8.14.2",
  91. "yaml": "^2.8.2"
  92. },
  93. "devDependencies": {
  94. "@eslint/js": "^9.39.3",
  95. "@playwright/test": "^1.59.1",
  96. "@testing-library/react": "^16.3.2",
  97. "@types/node": "^22.19.7",
  98. "@types/react": "^18.2.43",
  99. "@types/react-dom": "^18.2.17",
  100. "@vitejs/plugin-react": "^4.6.0",
  101. "autoprefixer": "^10.4.16",
  102. "concurrently": "^8.2.2",
  103. "eslint": "^9.39.3",
  104. "eslint-plugin-import-x": "^4.16.1",
  105. "eslint-plugin-react": "^7.37.5",
  106. "eslint-plugin-react-hooks": "^7.0.1",
  107. "eslint-plugin-react-refresh": "^0.5.2",
  108. "eslint-plugin-tailwindcss": "^3.18.2",
  109. "eslint-plugin-unused-imports": "^4.4.1",
  110. "globals": "^17.4.0",
  111. "jsdom": "^29.0.2",
  112. "node-gyp": "^12.3.0",
  113. "postcss": "^8.4.32",
  114. "sharp": "^0.34.2",
  115. "tailwindcss": "^3.4.0",
  116. "typescript": "^5.9.3",
  117. "typescript-eslint": "^8.56.1",
  118. "vite": "^7.0.4",
  119. "vitest": "^4.1.4"
  120. }
  121. }