-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "storybook-zeplin",
"version": "3.0.0",
"description": "Zeplin addon for Storybook",
"main": "dist/index.js",
"keywords": [
"storybook",
"zeplin",
"addon",
"storybook-addon",
"design",
"popular"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"storybook": "NODE_ENV=development storybook dev -p 9001 -c .storybook",
"build-storybook": "NODE_ENV=production storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mertkahyaoglu/storybook-zeplin.git"
},
"author": {
"name": "Mert Kahyaoğlu",
"url": "https://mert-kahyaoglu.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mertkahyaoglu/storybook-zeplin/issues"
},
"homepage": "https://github.com/mertkahyaoglu/storybook-zeplin#readme",
"dependencies": {
"@zeplin/sdk": "^1.9.0",
"@zeplin/storybook-inspector": "^0.3.0",
"query-string": "^6.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/components": "^8.2.1",
"@storybook/icons": "^1.2.9",
"@storybook/manager-api": "^8.2.1",
"@storybook/preview-api": "^8.2.1",
"@storybook/react": "^8.2.1",
"@storybook/react-webpack5": "^8.2.1",
"@storybook/theming": "^8.2.1",
"@types/react": "^18.3.3",
"@types/semver": "^7.3.8",
"babel-loader": "^8.1.0",
"typescript": "^5.5.3"
},
"storybook": {
"icon": "https://cdn.zeplin.io/assets/lp/img/icZeplin.svg",
"displayName": "Zeplin"
}
}