-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
{
"name": "storybook-controlled",
"version": "0.0.5",
"packageManager": "[email protected]",
"description": "A simple utility for connecting controlled components to storybook actions, controls and state",
"author": {
"name": "Chris Garber",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/braze-inc/storybook-controlled.git",
"type": "git"
},
"homepage": "https://github.com/braze-inc/storybook-controlled",
"bugs": {
"url": "https://github.com/braze/storybook-controlled/issues"
},
"keywords": [
"storybook",
"react",
"controlled",
"plugin",
"decorator"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"require": "./build/index.js",
"import": "./build/index.mjs"
}
},
"files": [
"dist"
],
"dependencies": {
"@storybook/addon-actions": "^8.4.7",
"@storybook/preview-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"react": "^19.0.0",
"react-date-range": "^2.0.1",
"react-dom": "^19.0.0",
"storybook": "^8.4.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19",
"chromatic": "^11.20.2",
"date-fns": "^4.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.14.0",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src",
"build": "tsup ./src/index.tsx --format cjs,esm --dts --clean",
"chromatic": "chromatic --project-token=chpt_c6950e289dc3b4b"
}
}