-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.71 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.71 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
{
"name": "@monorepo/root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build-libs": "yarn workspaces foreach -A --include 'packages/lib-*' run build",
"build-samples": "yarn workspaces foreach -A --include 'packages/sample-*' run build",
"build-samples-prod": "yarn workspaces foreach -A --include 'packages/sample-*' run build-prod",
"run-samples": "yarn workspaces foreach -Api --include 'packages/sample-*' run http-server",
"lint": "yarn eslint packages",
"test": "yarn jest",
"test-component": "yarn sample-app-test-component",
"test-e2e": "start-server-and-test 'yarn run-samples' '127.0.0.1:9000|127.0.0.1:9001' 'yarn sample-app-test-e2e'",
"eslint": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx --rulesdir ./packages/eslint-plugin-internal/src/runtime-rules",
"eslint-print-config": "yarn eslint --print-config",
"jest": "TZ=UTC jest --passWithNoTests",
"jest-print-config": "jest --showConfig",
"sample-app-install-cypress": "yarn workspace @monorepo/sample-app run cypress install",
"sample-app-test-component": "yarn workspace @monorepo/sample-app run cypress run --component",
"sample-app-test-e2e": "yarn workspace @monorepo/sample-app run cypress run --e2e",
"api-extractor": "api-extractor run --typescript-compiler-folder ./node_modules/typescript/lib",
"api-extractor-local": "yarn workspaces foreach -A --include 'packages/lib-*' run api-extractor-local"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@microsoft/api-documenter": "^7.19.24",
"@microsoft/api-extractor": "^7.33.6",
"@optimize-lodash/rollup-plugin": "^4.0.3",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.2",
"@types/jest-axe": "^3.5.4",
"@types/lodash": "^4.14.192",
"@types/node": "^16.11.12",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.7.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"find-up": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-axe": "^6.0.0",
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.23",
"minimatch": "^3.1.2",
"prettier": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^8.0.5",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"rollup": "^2.61.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-import-css": "^3.0.3",
"start-server-and-test": "^2.0.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"type-fest": "^2.18.0",
"typescript": "~4.4.4",
"webpack": "^5.100.0"
},
"dependenciesMeta": {
"cypress": {
"built": true
}
},
"packageManager": "yarn@4.12.0"
}