-
Notifications
You must be signed in to change notification settings - Fork 344
/
package.json
87 lines (87 loc) · 2.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "elyra",
"version": "4.0.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": "^18.0.26",
"@types/react-dom": "^18.0.9",
"ansi-html": "^0.0.9",
"ejs": "^3.1.9",
"cypress": "^6.2.0",
"glob-parent": "^5.1.2",
"node-forge": "^1.3.0",
"react": "^18.2.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.0.9",
"react-intl": "^6.5.5",
"trim-newlines": "^5.0.0",
"yjs": "^13.5.40"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.5.0",
"@glen/jest-raw-loader": "^2.0.0",
"@jupyterlab/testutils": "^4.2.5",
"@testing-library/cypress": "^7.0.4",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.170",
"@types/node": "^15.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "~18.0.9",
"@typescript-eslint/eslint-plugin": "~6.13.2",
"@typescript-eslint/parser": "~6.13.2",
"cypress": "^6.2.0",
"cypress-real-events": "^1.13.0",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.2.0",
"lerna": "^8.0.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "~5.0.5",
"start-server-and-test": "^2.0.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "~0.24.7",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "~5.1.6",
"webpack": "^5.76.1"
}
}