package.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "elyra",
  3. "version": "3.12.0-dev",
  4. "private": true,
  5. "workspaces": {
  6. "packages": [
  7. "packages/*"
  8. ],
  9. "nohoist": [
  10. "**/@jupyterlab/builder"
  11. ]
  12. },
  13. "scripts": {
  14. "graph": "ts-node etc/scripts/generate-make-graph.ts",
  15. "cy:open": "npx cypress open",
  16. "cy:run": "npx cypress run",
  17. "eslint": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx,.js",
  18. "eslint:check": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
  19. "prettier": "prettier --ignore-path .gitignore --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
  20. "prettier:check": "prettier --ignore-path .gitignore --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
  21. "test": "npm run test:unit && npm run test:integration",
  22. "start": "mkdir -p build/cypress-tests && ts-node scripts/start-test-server.ts",
  23. "test:integration": "server-test 'yarn start' ':9000/minio/health/live|http-get://localhost:58888?token=test' 'yarn cy:run'",
  24. "test:integration:debug": "server-test 'yarn start' ':9000/minio/health/live|http-get://localhost:58888?token=test' 'yarn cy:open'",
  25. "test:unit": "lerna run test --concurrency 1 --stream"
  26. },
  27. "husky": {
  28. "hooks": {
  29. "pre-commit": "lint-staged"
  30. }
  31. },
  32. "resolutions": {
  33. "@types/react": "^17.0.0",
  34. "@types/react-dom": "^17.0.0",
  35. "@types/react-intl": "^3.0.0",
  36. "ansi-html": "^0.0.8",
  37. "ejs": "^3.1.7",
  38. "cypress": "^6.2.0",
  39. "glob-parent": "^5.1.2",
  40. "node-forge": "^1.3.0",
  41. "react": "^17.0.1",
  42. "react-dev-utils": "^12.0.0",
  43. "react-dom": "^17.0.1",
  44. "react-intl": "^3.0.0",
  45. "trim-newlines": "^3.0.1"
  46. },
  47. "devDependencies": {
  48. "@4tw/cypress-drag-drop": "^1.3.1",
  49. "@cypress/webpack-preprocessor": "^5.5.0",
  50. "@jupyterlab/testutils": "^3.4.0",
  51. "@testing-library/cypress": "^7.0.4",
  52. "@types/jest": "^26.0.20",
  53. "@types/lodash": "^4.14.170",
  54. "@types/node": "^15.0.1",
  55. "@types/react": "^17.0.0",
  56. "@types/react-dom": "~17.0.0",
  57. "@types/react-intl": "^3.0.0",
  58. "@typescript-eslint/eslint-plugin": "~2.23.0",
  59. "@typescript-eslint/parser": "~2.23.0",
  60. "cypress": "^6.2.0",
  61. "eslint": "^6.5.0",
  62. "eslint-config-prettier": "^6.9.0",
  63. "eslint-plugin-cypress": "^2.11.2",
  64. "eslint-plugin-header": "^3.0.0",
  65. "eslint-plugin-import": "^2.20.2",
  66. "eslint-plugin-mocha": "^9.0.0",
  67. "eslint-plugin-prettier": "^3.1.2",
  68. "eslint-plugin-react": "^7.18.3",
  69. "eslint-plugin-react-hooks": "^4.1.2",
  70. "husky": "^2.3.0",
  71. "jest": "^26.6.3",
  72. "jest-raw-loader": "^1.0.1",
  73. "lerna": "^5.0.0",
  74. "lint-staged": "^9.5.0",
  75. "npm-run-all": "^4.1.5",
  76. "prettier": "^1.19.1",
  77. "rimraf": "~3.0.2",
  78. "start-server-and-test": "^1.12.1",
  79. "ts-jest": "^26.4.4",
  80. "ts-loader": "^6.2.2",
  81. "ts-node": "^9.1.1",
  82. "typescript": "~4.1.3",
  83. "webpack": "^5.0.0"
  84. }
  85. }