-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.25 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.25 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"postinstall": "husky install",
"lint": "yarn workspaces foreach -v --parallel run lint",
"audit": "audit-ci --moderate",
"build:pkgs": "yarn workspaces foreach -v --parallel --include '@ibm-watson/*' run build",
"build:apps": "yarn workspaces foreach -v --parallel run build:app",
"test": "yarn workspaces foreach -v --parallel run test",
"g:analyze": "cd $INIT_CWD && source-map-explorer",
"g:eslint": "cd $INIT_CWD && eslint"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.19.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/babel__preset-env": "^7.9.2",
"@types/classnames": "^2.2.9",
"@types/debounce": "^1.2.0",
"@types/dompurify": "^3.0.2",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/md5": "2.3.2",
"@types/mustache": "^4.2.2",
"@types/node": "^16.18.23",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-resize-detector": "^4.2.0",
"@types/react-virtualized": "^9.21.11",
"@types/seedrandom": "^3.0.2",
"@types/testing-library__cypress": "^5.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"audit-ci": "^5.1.2",
"axios": "^0.21.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"doctoc": "^2.2.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.5.0",
"fast-xml-parser": "^4.2.4",
"gh-pages": "^2.1.1",
"husky": "^8.0.3",
"ibm-watson": "^6.2.1",
"lerna": "^6.6.1",
"lint-staged": "^13.0.3",
"lorem-ipsum": "^2.0.3",
"md5": "^2.3.0",
"prettier": "^2.4.1",
"proper-url-join": "^2.1.1",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.3",
"seedrandom": "^3.0.5",
"source-map-explorer": "2.0.1",
"ts-loader": "^9.4.2",
"typescript": "^3.8.2",
"vue": "^2.6.11",
"webpack": "5.72.1",
"yarnhook": "0.5.2-0"
},
"lint-staged": {
"{packages,examples}/**/*.{json,css,scss,md}": [
"prettier --write"
],
"{packages,examples}/**/*.{js,jsx,ts,tsx}": [
"yarn lint --fix"
],
"README.md": [
"doctoc"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@3.2.3",
"resolutions": {
"react-scripts@^5.0.1": "patch:react-scripts@npm:5.0.1#.yarn/patches/react-scripts-npm-5.0.1-d06bd2d5ad"
}
}