forked from elyra-ai/elyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "elyra",
"version": "v1.0.0-rc.1",
"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}\"",
"start-jupyter": "mkdir -p build/cypress-tests && jupyter lab --config=./tests/test-config.py",
"test": "start-server-and-test start-jupyter http-get://localhost:8888?token=test cy:run",
"test-debug": "start-server-and-test start-jupyter http-get://localhost:8888?token=test cy:open"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^1.3.1",
"@cypress/webpack-preprocessor": "^4.1.5",
"@typescript-eslint/eslint-plugin": "~2.23.0",
"@typescript-eslint/parser": "~2.23.0",
"cypress": "^4.4.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^2.3.0",
"lerna": "^3.16.4",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "~3.0.0",
"start-server-and-test": "1.7.9",
"ts-loader": "^6.2.1",
"typescript": "~3.7.3",
"webpack": "^4.42.0"
},
"resolutions": {
"@blueprintjs/core": "3.28.1",
"@blueprintjs/select": "3.13.2",
"react": "~16.8.6",
"@types/react": "~16.8.6",
"react-dom": "~16.8.5",
"@types/react-dom": "~16.8.5",
"react-intl": "^2.3.0",
"@types/react-intl": "^2.3.0",
"@lumino/coreutils": "1.5.0"
}
}