generated from ianzone/react-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.62 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
{
"name": "antd-enhanced",
"version": "1.0.0",
"description": "Useful react components and hooks based on Ant Design",
"type": "module",
"files": ["dist"],
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"homepage": "https://github.com/ianzone/antd-enhanced#readme",
"scripts": {
"lint": "biome check --fix src",
"build": "vite build",
"build:storybook": "storybook build --docs --output-dir storybook",
"dev": "storybook dev -p 6006 --no-open",
"dev:cc": "storybook dev -p 6006 --no-open --force-build-preview",
"test": "nr test:ts && nr test:tsx",
"test:ts": "vitest run --coverage",
"test:tsx": "concurrently -k \"na storybook dev --exact-port 6006 --ci --quiet\" \"nr test:story\"",
"test:story": "wait-on http://localhost:6006 && test-storybook --coverage",
"postinstall": "lefthook install",
"commit": "git add -A && git commit --no-edit",
"squash": "node ./squash.mjs && git commit --no-edit --no-verify",
"release": "semantic-release",
"update": "nlx storybook@latest upgrade",
"chromatic": "chromatic --exit-zero-on-changes"
},
"dependencies": {
"@rapideditor/country-coder": "^5.3.1",
"@twemoji/api": "^15.1.0",
"es-toolkit": "^1.32.0",
"libphonenumber-js": "^1.11.19",
"react-error-boundary": "^5.0.0",
"react-icons": "^5.4.0"
},
"peerDependencies": {
"antd": "^5.23.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^3.2.4",
"@semantic-release/exec": "^7.0.3",
"@storybook/addon-a11y": "^8.5.3",
"@storybook/addon-coverage": "^1.0.5",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@storybook/test-runner": "^0.21.0",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^3.0.5",
"ajv": "^8.17.1",
"biome-extends": "^1.2.0",
"chromatic": "^11.25.2",
"concurrently": "^9.1.2",
"git-cz": "^4.9.0",
"happy-dom": "^17.0.0",
"knip": "^5.43.6",
"lefthook": "^1.10.10",
"semantic-release": "^24.2.1",
"storybook": "^8.5.3",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5",
"wait-on": "^8.0.2",
"zx": "^8.3.2"
},
"engines": {
"node": ">=22"
}
}