package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "sharp": "^0.35.3",
  26. "simplebar-react": "^3.3.2",
  27. "zustand": "^5.0.14"
  28. },
  29. "devDependencies": {
  30. "@commander-js/extra-typings": "^14.0.0",
  31. "@eslint/js": "^9.39.1",
  32. "@types/node": "^24.10.0",
  33. "@types/pako": "^2.0.4",
  34. "@types/react": "^19.2.2",
  35. "@types/react-dom": "^19.2.2",
  36. "@vitejs/plugin-react": "^6.0.5",
  37. "babel-plugin-react-compiler": "^1.0.0",
  38. "commander": "^14.0.2",
  39. "eslint": "^9.39.1",
  40. "eslint-plugin-react-hooks": "^7.0.1",
  41. "eslint-plugin-react-refresh": "^0.4.24",
  42. "globals": "^16.5.0",
  43. "handlebars": "^4.7.8",
  44. "ora": "^9.0.0",
  45. "prettier": "^3.6.2",
  46. "ts-node": "^10.9.2",
  47. "tsconfig-paths": "^4.2.0",
  48. "typescript": "~5.9.3",
  49. "typescript-eslint": "^8.46.3",
  50. "vitest": "^4.1.10",
  51. "vite": "^8.2.0"
  52. }
  53. }