forked from elyra-ai/elyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.8 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
{
"name": "elyra",
"version": "3.14.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.6",
"@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.5.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"
}
}