forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.39 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
97
98
99
100
101
102
103
{
"name": "reach-ui",
"description": "The accessible foundation of your React apps and design systems",
"author": "React Training <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/reach/reach-ui.git"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"build": "turbo run build --filter=@reach/* && node scripts/postbuild.js",
"test:react-16": "USE_REACT_16=true vitest",
"test:react-18": "USE_REACT_18=true vitest",
"test": "vitest",
"lint": "eslint packages",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,md,mdx,json,css,scss}'",
"dev": "pnpm --filter reach-storybook start",
"release": "node scripts/prepublish.js && changeset publish",
"changeset": "changeset",
"version": "changeset version"
},
"dependencies": {
"@changesets/cli": "^2.25.0",
"@reach-internal/test": "workspace:*",
"@reach-internal/tsconfig": "workspace:*",
"@reach/accordion": "workspace:*",
"@reach/alert": "workspace:*",
"@reach/alert-dialog": "workspace:*",
"@reach/auto-id": "workspace:*",
"@reach/checkbox": "workspace:*",
"@reach/combobox": "workspace:*",
"@reach/descendants": "workspace:*",
"@reach/dialog": "workspace:*",
"@reach/disclosure": "workspace:*",
"@reach/dropdown": "workspace:*",
"@reach/listbox": "workspace:*",
"@reach/machine": "workspace:*",
"@reach/menu-button": "workspace:*",
"@reach/popover": "workspace:*",
"@reach/portal": "workspace:*",
"@reach/rect": "workspace:*",
"@reach/skip-nav": "workspace:*",
"@reach/slider": "workspace:*",
"@reach/tabs": "workspace:*",
"@reach/tooltip": "workspace:*",
"@reach/utils": "workspace:*",
"@reach/visually-hidden": "workspace:*",
"@reach/window-size": "workspace:*",
"@remix-run/changelog-github": "^0.0.5",
"@testing-library/dom": "^8.16.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-13": "npm:@testing-library/react@^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/aria-query": "^5.0.0",
"@types/css": "^0.0.33",
"@types/lodash": "^4.14.182",
"@types/module-alias": "^2.0.1",
"@types/prop-types": "^15.7.5",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-is": "^17.0.3",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"aria-query": "^5.0.0",
"axe-core": "^4.4.2",
"chalk": "^5.0.1",
"css": "^3.0.0",
"css.escape": "^1.5.1",
"dom-accessibility-api": "^0.5.14",
"eslint": "^8.19.0",
"eslint-config-chance": "^2.0.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.1.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"prettier": "^2.7.1",
"pretty-format": "^28.1.1",
"react": "^17.0.2",
"react-16": "npm:react@^16.14.0",
"react-18": "npm:react@^18.0.0",
"react-dom": "^17.0.2",
"react-dom-16": "npm:react-dom@^16.14.0",
"react-dom-18": "npm:react-dom@^18.0.0",
"react-is": "^17.0.2",
"react-is-16": "npm:react-is@^16.13.1",
"react-is-18": "npm:react-is@^18.0.0",
"redent": "^3.0.0",
"sinon": "^11.1.1",
"turbo": "^1.3.1",
"typescript": "^4.7.4",
"vitest": "0.16.0",
"vitest-axe": "0.0.7",
"vitest-dom": "0.0.4",
"vitest-tsconfig-paths": "^3.4.1"
}
}