package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. },
  15. "dependencies": {
  16. "@emotion/react": "^11.14.0",
  17. "@emotion/styled": "^11.14.1",
  18. "@mui/material": "^7.3.5",
  19. "pako": "^2.1.0",
  20. "react": "^19.2.0",
  21. "react-dom": "^19.2.0",
  22. "react-router": "^8.3.0",
  23. "simplebar-react": "^3.3.2",
  24. "zustand": "^5.0.14"
  25. },
  26. "devDependencies": {
  27. "@commander-js/extra-typings": "^14.0.0",
  28. "@eslint/js": "^9.39.1",
  29. "@types/node": "^24.10.0",
  30. "@types/pako": "^2.0.4",
  31. "@types/react": "^19.2.2",
  32. "@types/react-dom": "^19.2.2",
  33. "@vitejs/plugin-react": "^6.0.5",
  34. "babel-plugin-react-compiler": "^1.0.0",
  35. "commander": "^14.0.2",
  36. "eslint": "^9.39.1",
  37. "eslint-plugin-react-hooks": "^7.0.1",
  38. "eslint-plugin-react-refresh": "^0.4.24",
  39. "globals": "^16.5.0",
  40. "handlebars": "^4.7.8",
  41. "ora": "^9.0.0",
  42. "prettier": "^3.6.2",
  43. "ts-node": "^10.9.2",
  44. "tsconfig-paths": "^4.2.0",
  45. "typescript": "~5.9.3",
  46. "typescript-eslint": "^8.46.3",
  47. "vite": "^8.2.0"
  48. }
  49. }