12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "name": "elyra",
- "version": "3.12.0-dev",
- "private": true,
- "workspaces": {
- "packages": [
- "packages/*"
- ],
- "nohoist": [
- "**/@jupyterlab/builder"
- ]
- },
- "scripts": {
- "graph": "ts-node etc/scripts/generate-make-graph.ts",
- "cy:open": "npx cypress open",
- "cy:run": "npx cypress run",
- "eslint": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx,.js",
- "eslint:check": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
- "prettier": "prettier --ignore-path .gitignore --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
- "prettier:check": "prettier --ignore-path .gitignore --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
- "test": "npm run test:unit && npm run test:integration",
- "start": "mkdir -p build/cypress-tests && ts-node scripts/start-test-server.ts",
- "test:integration": "server-test 'yarn start' ':9000/minio/health/live|http-get://localhost:58888?token=test' 'yarn cy:run'",
- "test:integration:debug": "server-test 'yarn start' ':9000/minio/health/live|http-get://localhost:58888?token=test' 'yarn cy:open'",
- "test:unit": "lerna run test --concurrency 1 --stream"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "resolutions": {
- "@types/react": "^17.0.0",
- "@types/react-dom": "^17.0.0",
- "@types/react-intl": "^3.0.0",
- "ansi-html": "^0.0.8",
- "ejs": "^3.1.7",
- "cypress": "^6.2.0",
- "glob-parent": "^5.1.2",
- "node-forge": "^1.3.0",
- "react": "^17.0.1",
- "react-dev-utils": "^12.0.0",
- "react-dom": "^17.0.1",
- "react-intl": "^3.0.0",
- "trim-newlines": "^3.0.1"
- },
- "devDependencies": {
- "@4tw/cypress-drag-drop": "^1.3.1",
- "@cypress/webpack-preprocessor": "^5.5.0",
- "@jupyterlab/testutils": "^3.4.0",
- "@testing-library/cypress": "^7.0.4",
- "@types/jest": "^26.0.20",
- "@types/lodash": "^4.14.170",
- "@types/node": "^15.0.1",
- "@types/react": "^17.0.0",
- "@types/react-dom": "~17.0.0",
- "@types/react-intl": "^3.0.0",
- "@typescript-eslint/eslint-plugin": "~2.23.0",
- "@typescript-eslint/parser": "~2.23.0",
- "cypress": "^6.2.0",
- "eslint": "^6.5.0",
- "eslint-config-prettier": "^6.9.0",
- "eslint-plugin-cypress": "^2.11.2",
- "eslint-plugin-header": "^3.0.0",
- "eslint-plugin-import": "^2.20.2",
- "eslint-plugin-mocha": "^9.0.0",
- "eslint-plugin-prettier": "^3.1.2",
- "eslint-plugin-react": "^7.18.3",
- "eslint-plugin-react-hooks": "^4.1.2",
- "husky": "^2.3.0",
- "jest": "^26.6.3",
- "jest-raw-loader": "^1.0.1",
- "lerna": "^5.0.0",
- "lint-staged": "^9.5.0",
- "npm-run-all": "^4.1.5",
- "prettier": "^1.19.1",
- "rimraf": "~3.0.2",
- "start-server-and-test": "^1.12.1",
- "ts-jest": "^26.4.4",
- "ts-loader": "^6.2.2",
- "ts-node": "^9.1.1",
- "typescript": "~4.1.3",
- "webpack": "^5.0.0"
- }
- }
|