package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "@elyra/pipeline-editor-extension",
  3. "version": "3.9.0-dev",
  4. "description": "JupyterLab extension - Visual editor to build Notebook pipelines",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/elyra-ai/elyra",
  11. "bugs": {
  12. "url": "https://github.com/elyra-ai/elyra/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/elyra-ai/elyra"
  17. },
  18. "license": "Apache-2.0",
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "files": [
  23. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  24. "src/**/*.{ts,tsx}",
  25. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  26. ],
  27. "scripts": {
  28. "build:test": "tsc --build tsconfig.test.json",
  29. "build": "jlpm run build:lib && jlpm run build:labextension:dev",
  30. "build:prod": "jlpm run build:lib && jlpm run build:labextension",
  31. "build:lib": "tsc",
  32. "build:labextension": "jupyter labextension build .",
  33. "build:labextension:dev": "jupyter labextension build --development True .",
  34. "clean": "rimraf lib tsconfig.tsbuildinfo ../../dist/labextensions/@elyra/metadata-extension",
  35. "lab:dev": "jupyter labextension develop --overwrite ../../dist/labextensions/@elyra/metadata-extension",
  36. "dist": "npm pack .",
  37. "prepare": "npm run build ",
  38. "test": "FORCE_COLOR=true jest",
  39. "watch": "run-p watch:src watch:labextension",
  40. "watch:src": "tsc -w",
  41. "watch:labextension": "jupyter labextension watch .",
  42. "lab:install": "jupyter labextension install --no-build",
  43. "lab:uninstall": "jupyter labextension uninstall --no-build",
  44. "link:dev": "yarn link @jupyterlab/builder",
  45. "unlink:dev": "yarn unlink @jupyterlab/builder"
  46. },
  47. "dependencies": {
  48. "@elyra/metadata-common": "3.9.0-dev",
  49. "@elyra/pipeline-editor": "~1.9.0",
  50. "@elyra/pipeline-services": "~1.9.0",
  51. "@elyra/services": "3.9.0-dev",
  52. "@elyra/ui-components": "3.9.0-dev",
  53. "@jupyterlab/application": "^3.4.0",
  54. "@jupyterlab/apputils": "^3.4.0",
  55. "@jupyterlab/builder": "^3.4.0",
  56. "@jupyterlab/coreutils": "^5.4.0",
  57. "@jupyterlab/docregistry": "^3.4.0",
  58. "@jupyterlab/filebrowser": "^3.4.0",
  59. "@jupyterlab/filebrowser-extension": "^3.4.0",
  60. "@jupyterlab/fileeditor": "^3.4.0",
  61. "@jupyterlab/launcher": "^3.4.0",
  62. "@jupyterlab/mainmenu": "^3.4.0",
  63. "@jupyterlab/notebook": "^3.4.0",
  64. "@jupyterlab/outputarea": "^3.4.0",
  65. "@jupyterlab/services": "^6.4.0",
  66. "@jupyterlab/ui-components": "^3.4.0",
  67. "@lumino/algorithm": "^1.3.3",
  68. "@lumino/coreutils": "^1.5.6",
  69. "@lumino/disposable": "^1.4.3",
  70. "@lumino/dragdrop": "^1.7.1",
  71. "@lumino/messaging": "^1.4.3",
  72. "@lumino/signaling": "^1.4.3",
  73. "@lumino/widgets": "^1.19.0",
  74. "@material-ui/lab": "^4.0.0-alpha.18",
  75. "autoprefixer": "^9.6.0",
  76. "carbon-components": "~10.8.1",
  77. "json-loader": "^0.5.7",
  78. "react": "^17.0.1",
  79. "react-dom": "^17.0.1",
  80. "react-intl": "^5.10.15",
  81. "react-redux": "^7.2.0",
  82. "react-scripts": "4.0.3",
  83. "swr": "^0.5.6",
  84. "uuid": "^3.4.0"
  85. },
  86. "devDependencies": {
  87. "@types/jest": "^23.3.11",
  88. "@types/node": "^12.0.10",
  89. "@types/react": "17.0.0",
  90. "@types/react-dom": "17.0.0",
  91. "@types/react-intl": "^3.0.0",
  92. "@types/uuid": "^3.4.7",
  93. "cheerio": "^1.0.0-rc.3",
  94. "jest": "^24.7.1",
  95. "jest-raw-loader": "^1.0.1",
  96. "rimraf": "^3.0.2",
  97. "source-map-loader": "^0.2.4",
  98. "ts-jest": "^24.0.2",
  99. "ts-loader": "^6.2.1",
  100. "typescript": "~4.1.3"
  101. },
  102. "resolutions": {
  103. "@types/react": "17.0.0"
  104. },
  105. "publishConfig": {
  106. "access": "public"
  107. },
  108. "jupyterlab": {
  109. "extension": true,
  110. "schemaDir": "schema",
  111. "outputDir": "../../dist/labextensions/@elyra/pipeline-editor-extension"
  112. }
  113. }