package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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-api.ts",
  12. "postfactorio-api": "prettier --write \"scripts/factorio-dump.models.ts\"",
  13. "factorio-process": "ts-node -r tsconfig-paths/register scripts/factorio-process-data.ts"
  14. },
  15. "dependencies": {
  16. "@emotion/react": "^11.14.0",
  17. "@emotion/styled": "^11.14.1",
  18. "@mui/material": "^7.3.5",
  19. "react": "^19.2.0",
  20. "react-dom": "^19.2.0"
  21. },
  22. "devDependencies": {
  23. "@eslint/js": "^9.39.1",
  24. "@types/node": "^24.10.0",
  25. "@types/react": "^19.2.2",
  26. "@types/react-dom": "^19.2.2",
  27. "@vitejs/plugin-react": "^5.1.0",
  28. "babel-plugin-react-compiler": "^1.0.0",
  29. "eslint": "^9.39.1",
  30. "eslint-plugin-react-hooks": "^7.0.1",
  31. "eslint-plugin-react-refresh": "^0.4.24",
  32. "globals": "^16.5.0",
  33. "handlebars": "^4.7.8",
  34. "prettier": "^3.6.2",
  35. "ts-node": "^10.9.2",
  36. "tsconfig-paths": "^4.2.0",
  37. "typescript": "~5.9.3",
  38. "typescript-eslint": "^8.46.3",
  39. "vite": "^7.2.2"
  40. }
  41. }