-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
96 lines (96 loc) · 2.86 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"postinstall": "husky install",
"lint": "yarn workspaces foreach -Av --parallel run lint",
"build:pkgs": "yarn workspaces foreach -Av --parallel --include '@ibm-watson/*' run build",
"build:apps": "yarn workspaces foreach -Av --parallel run build:app",
"test": "yarn workspaces foreach -Av --parallel run test",
"test:ci": "yarn workspaces foreach -Av run test:ci",
"g:analyze": "cd $INIT_CWD && source-map-explorer",
"g:eslint": "cd $INIT_CWD && eslint"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/babel__preset-env": "^7.9.6",
"@types/classnames": "^2.3.1",
"@types/debounce": "^1.2.4",
"@types/dompurify": "^3.0.5",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.202",
"@types/md5": "2.3.5",
"@types/mustache": "^4.2.5",
"@types/node": "^20.11.5",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.25",
"@types/react-resize-detector": "^4.2.0",
"@types/react-virtualized": "^9.21.29",
"@types/seedrandom": "^3.0.8",
"@types/testing-library__cypress": "^5.0.13",
"axios": "^1.6.5",
"doctoc": "^2.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-xml-parser": "^4.3.3",
"gh-pages": "^6.1.1",
"husky": "^8.0.3",
"ibm-watson": "^8.0.0",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"lorem-ipsum": "^2.0.8",
"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",
"seedrandom": "^3.0.5",
"source-map-explorer": "2.5.3",
"yarnhook": "0.6.1"
},
"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": "[email protected]",
"resolutions": {
"react-scripts@^5.0.1": "patch:react-scripts@npm:5.0.1#.yarn/patches/react-scripts-npm-5.0.1-d06bd2d5ad.patch",
"@types/react@npm:*": "^17"
}
}