-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.23 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"typecheck": "yarn workspaces foreach run typecheck",
"test": "yarn workspaces foreach run test",
"cypress:component": "yarn workspaces foreach run cypress:component",
"cypress:e2e": "yarn workspaces foreach run cypress:e2e",
"lint": "yarn run lint:lib",
"lint:lib": "yarn eslint packages/jui",
"format:check": "prettier packages/jui packages/website .github --check",
"format:fix": "prettier packages/jui packages/website .github --write",
"build": "yarn workspaces foreach run build",
"build:public": "yarn workspaces foreach --no-private run build",
"deduplicate": "yarn dedupe '@react-aria/*' '@react-stately/*' '@react-types/*'",
"deduplicate:check": "yarn deduplicate --check",
"release:public": "yarn workspaces foreach --no-private npm publish --tolerate-republish"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@microsoft/api-extractor": "^7.52.7",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"babel-eslint": "^10.1.0",
"buffer": "^5.5.0",
"eslint": "^8.57.1",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jui": "workspace:^",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"parcel": "2.8.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"typescript": "*"
},
"packageManager": "yarn@3.2.1",
"resolutions": {
"styled-components": "6.1.17",
"typescript": "5.7.3",
"react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"react-dom": "^18.3.1",
"cypress-plugin-snapshots@1.4.4": "patch:cypress-plugin-snapshots@npm:1.4.4#.yarn/patches/cypress-plugin-snapshots-npm-1.4.4-a6166116fb.patch",
"@parcel/transformer-js@2.6.0": "patch:@parcel/transformer-js@npm:2.6.0#.yarn/patches/@parcel-transformer-js-npm-2.6.0-6caf2205a6.patch"
}
}