package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "rath",
  3. "private": true,
  4. "version": "1.1.0",
  5. "description": "![](https://img.shields.io/github/license/Kanaries/Rath)",
  6. "scripts": {
  7. "build:utils": "yarn workspace @kanaries/rath-utils build",
  8. "build:scenegraph": "yarn workspace vega-scenegraph build",
  9. "build:renderer": "yarn workspace vega-painter-renderer build",
  10. "build:client": "yarn workspace rath-client build",
  11. "build": "npm run build:utils && npm run build:scenegraph && npm run build:renderer && npm run build:client",
  12. "test": "yarn workspace rath-client test",
  13. "ui": "npm run test && npm run build && node start.js",
  14. "devfront": "yarn workspace rath-client start",
  15. "devback": "yarn workspace backend dev",
  16. "count": "cloc --exclude-dir=$(tr '\n' ',' < .clocignore) ."
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/Kanaries/Rath.git"
  21. },
  22. "keywords": [
  23. "insights",
  24. "visualization",
  25. "data analysis"
  26. ],
  27. "author": "Observed Observer",
  28. "bugs": {
  29. "url": "https://github.com/Kanaries/Rath/issues"
  30. },
  31. "workspaces": {
  32. "packages": [
  33. "packages/*"
  34. ],
  35. "nohoist": [
  36. "*/webpack-dev-server",
  37. "*/webpack-cli",
  38. "**/vega",
  39. "**/vega-lite",
  40. "**/vega-embed",
  41. "**/visual-insights"
  42. ]
  43. },
  44. "resolutions": {
  45. "@types/react": "^17.x",
  46. "@types/react-dom": "^17.x",
  47. "vega-scenegraph": "4.10.1-kanaries-patch"
  48. },
  49. "homepage": "https://github.com/Kanaries/Rath#readme",
  50. "devDependencies": {
  51. "concurrently": "^4.1.2",
  52. "yarn": "^1.19.0"
  53. },
  54. "dependencies": {}
  55. }