forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.98 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
{
"name": "reach-ui-website",
"description": "The accessible foundation of your React apps and design systems",
"private": true,
"repository": "https://github.com/reach/reach-ui",
"author": "React Training <[email protected]>",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn dev",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"clean": "gatsby clean"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@philpl/buble": "0.19.7",
"@reach/accordion": "file:../packages/accordion",
"@reach/alert": "file:../packages/alert",
"@reach/alert-dialog": "file:../packages/alert-dialog",
"@reach/auto-id": "file:../packages/auto-id",
"@reach/checkbox": "file:../packages/checkbox",
"@reach/combobox": "file:../packages/combobox",
"@reach/descendants": "file:../packages/descendants",
"@reach/dialog": "file:../packages/dialog",
"@reach/disclosure": "file:../packages/disclosure",
"@reach/dropdown": "file:../packages/dropdown",
"@reach/listbox": "file:../packages/listbox",
"@reach/menu-button": "file:../packages/menu-button",
"@reach/popover": "file:../packages/popover",
"@reach/portal": "file:../packages/portal",
"@reach/rect": "file:../packages/rect",
"@reach/skip-nav": "file:../packages/skip-nav",
"@reach/slider": "file:../packages/slider",
"@reach/tabs": "file:../packages/tabs",
"@reach/tooltip": "file:../packages/tooltip",
"@reach/utils": "file:../packages/utils",
"@reach/visually-hidden": "file:../packages/visually-hidden",
"@reach/window-size": "file:../packages/window-size",
"@react-spring/web": "^9.2.3",
"clsx": "^1.1.1",
"core-js": "^3.15.1",
"gatsby": "^3.8.0",
"gatsby-image": "^3.8.0",
"gatsby-plugin-google-analytics": "^3.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-mdx": "^2.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-sass": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-remark-autolink-headers": "^4.5.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-remark-slug": "0.1.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-react-docgen": "^6.8.0",
"gatsby-transformer-sharp": "^3.8.0",
"match-sorter": "^6.3.0",
"postcss": "^8.3.5",
"postcss-preset-env": "^6.7.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"recondition": "^1.2.4",
"sass": "^1.35.1",
"use-throttle": "^0.0.3"
},
"browserslist": [
"last 2 versions",
"> 2%",
"maintained node versions",
"IE 11"
],
"eslintConfig": {
"extends": "react-app",
"globals": {
"__DEV__": "readonly"
},
"rules": {
"import/first": 0,
"jsx-a11y/no-static-element-interactions": [
1,
{
"handlers": [
"onClick",
"onMouseDown",
"onMouseUp",
"onKeyPress",
"onKeyDown",
"onKeyUp"
]
}
]
}
}
}