-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 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
{
"name": "@doda11y/react",
"version": "1.0.0",
"main": "./build/index.js",
"keywords": [
"a11y",
"doda11y",
"react",
"accessibility"
],
"module": "./build/index.js",
"files": [
"build"
],
"dependencies": {
"react": "18.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "1.3.3",
"@storybook/addon-a11y": "8.0.8",
"@storybook/addon-essentials": "8.0.8",
"@storybook/addon-interactions": "8.0.8",
"@storybook/addon-links": "8.0.8",
"@storybook/addon-onboarding": "8.0.8",
"@storybook/blocks": "8.0.8",
"@storybook/react": "8.0.8",
"@storybook/react-vite": "8.0.8",
"@storybook/test": "8.0.8",
"@types/react": "18.2.47",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"commitizen": "4.3.0",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-storybook": "0.8.0",
"git-cz": "4.9.0",
"rollup": "4.22.4",
"@rollup/plugin-babel": "^6.0.4",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-esbuild": "6.1.1",
"storybook": "8.0.8",
"tsx": "4.7.1",
"typescript": "5.3.3",
"vitepress": "1.0.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"types-md:generate": "tsx generateDocs/index.ts src --out generateDocs/docs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"packageManager": "yarn@1.22.22"
}