-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
57 lines (57 loc) · 2.15 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
{
"private": true,
"name": "broadcom-api-hub",
"scripts": {
"build": "yarn build-lib && yarn build-mock",
"build-lib": "cd packages/layer7-apihub && yarn build",
"build-mock": "cd packages/layer7-apihub-mock && yarn build",
"build-example": "cd packages/example && yarn build",
"build-healthcare": "cd packages/healthcare && yarn build",
"start-example": "concurrently \"yarn start-lib\" \"yarn start-mock\" \"cd packages/example && yarn start\"",
"start-healthcare": "concurrently \"yarn start-lib\" \"yarn start-mock\" \"cd packages/healthcare && yarn start\"",
"start-lib": "cd packages/layer7-apihub && yarn dev",
"start-mock": "cd packages/layer7-apihub-mock && yarn dev",
"test": "cd packages/layer7-apihub && yarn test",
"test:coverage": "cd packages/layer7-apihub && yarn test:coverage",
"lint": "eslint --fix ."
},
"workspaces": [
"packages/*",
"cypress"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "~5.1.0",
"eslint": "~7.11.0",
"eslint-config-prettier": "~6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "~3.1.4",
"lint-staged": "~10.0.7",
"prettier": "~1.19.1"
},
"resolutions": {
"@babel/plugin-transform-for-of": "7.12.13",
"@testing-library/dom": "~6.11.0",
"@testing-library/react": "~11.0.0",
"@material-ui/core": "~4.10.0",
"@material-ui/lab": "~4.0.0-alpha.54",
"@material-ui/styles": "~4.10.0",
"@material-ui/system": "~4.9.14",
"@material-ui/types": "~5.1.0",
"@uiw/react-markdown-preview": "3.4.0",
"bl": "~4.0.3",
"cypress": "~5.6.0",
"date-fns": "~2.9.0",
"dompurify": "^2.5.6",
"es-abstract": "~1.19.0",
"elliptic": "~6.5.7",
"get-intrinsic": "~1.1.3",
"serialize-javascript": "~3.1.0",
"qs": "6.9.7",
"rehype-ignore": "1.0.1",
"ua-parser-js": "0.7.35",
"url-parse": "^1.5.9",
"fast-json-patch": "3.1.1",
"yaml": "2.0.0-1"
}
}