package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "factorio-clockmaster",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc -b && vite build",
  9. "lint": "eslint .",
  10. "preview": "vite preview",
  11. "factorio-api": "ts-node -r tsconfig-paths/register scripts/factorio-dump/lua-api/index.ts",
  12. "postfactorio-api": "prettier --write \"scripts/factorio-dump/lua-api/models.ts\"",
  13. "factorio-process": "ts-node -r tsconfig-paths/register scripts/factorio-dump/index.ts",
  14. "test": "vitest",
  15. "test:run": "vitest run"
  16. },
  17. "dependencies": {
  18. "@emotion/react": "^11.14.0",
  19. "@emotion/styled": "^11.14.1",
  20. "@mui/material": "^7.3.5",
  21. "pako": "^2.1.0",
  22. "react": "^19.2.0",
  23. "react-dom": "^19.2.0",
  24. "react-router": "^8.3.0",
  25. "reactflow": "^11.11.4",
  26. "sharp": "^0.35.3",
  27. "simplebar-react": "^3.3.2",
  28. "zustand": "^5.0.14"
  29. },
  30. "devDependencies": {
  31. "@commander-js/extra-typings": "^14.0.0",
  32. "@eslint/js": "^9.39.1",
  33. "@types/node": "^24.10.0",
  34. "@types/pako": "^2.0.4",
  35. "@types/react": "^19.2.2",
  36. "@types/react-dom": "^19.2.2",
  37. "@vitejs/plugin-react": "^6.0.5",
  38. "babel-plugin-react-compiler": "^1.0.0",
  39. "commander": "^14.0.2",
  40. "eslint": "^9.39.1",
  41. "eslint-plugin-react-hooks": "^7.0.1",
  42. "eslint-plugin-react-refresh": "^0.4.24",
  43. "globals": "^16.5.0",
  44. "handlebars": "^4.7.8",
  45. "ora": "^9.0.0",
  46. "prettier": "^3.6.2",
  47. "ts-node": "^10.9.2",
  48. "tsconfig-paths": "^4.2.0",
  49. "typescript": "~5.9.3",
  50. "typescript-eslint": "^8.46.3",
  51. "vite": "^8.2.0",
  52. "vitest": "^4.1.10"
  53. }
  54. }