forked from elyra-ai/elyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.58 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
{
"name": "elyra",
"version": "2.3.0-dev",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"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 --scope \"@elyra/*\" --concurrency 1 --stream"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@types/react": "^17.0.0",
"@types/react-dom": "~17.0.0",
"@types/react-intl": "^3.0.0",
"@lumino/widgets": "1.17.0",
"cypress": "^6.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^3.0.0"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^1.3.1",
"@cypress/webpack-preprocessor": "^5.5.0",
"@jupyterlab/testutils": "3.0.0",
"@testing-library/cypress": "^7.0.4",
"@types/jest": "^26.0.20",
"@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-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^2.3.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"jest-raw-loader": "^1.0.1",
"lerna": "^3.16.4",
"lint-staged": "^9.5.0",
"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"
}
}