generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
132 lines (132 loc) · 4.34 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@storybook/addon-react-native-web",
"version": "0.0.26",
"description": "Configure React storybook for react-native-web",
"author": "Daniel Williams",
"keywords": [
"storybook-addons",
"react-native",
"react-native-web"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/addon-react-native-web"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/ts/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"clean": "rimraf ./dist",
"buildBabel": "concurrently \"yarn buildBabel:cjs\" \"yarn buildBabel:esm\"",
"buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"",
"buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"",
"buildTsc": "tsc -p tsconfig.prod.json --declaration --emitDeclarationOnly --outDir ./dist/ts",
"prebuild": "yarn clean",
"build": "concurrently \"yarn buildBabel\" \"yarn buildTsc\"",
"build:watch": "concurrently \"yarn buildBabel:esm -- --watch\" \"yarn buildTsc -- --watch\"",
"storybook": "yarn buildBabel:cjs && storybook dev -p 6006",
"start": "concurrently \"yarn build:watch\" \"yarn storybook -- --quiet\"",
"build-storybook": "storybook build",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "yarn build && auto shipit",
"eject-ts": "zx scripts/eject-typescript.mjs",
"chromatic": "npx chromatic --project-token=c9eb9dda8699",
"check": "tsc --noEmit"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.7",
"@chromatic-com/storybook": "^2.0.2",
"@expo/html-elements": "^0.5.1",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "^0.73.19",
"@storybook/addon-essentials": "^8.3.2",
"@storybook/addon-mdx-gfm": "^8.3.2",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.3.2",
"@storybook/react-webpack5": "^8.3.2",
"@types/react-native-vector-icons": "^6.4.18",
"auto": "^11.0.7",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"babel-plugin-react-docgen-typescript": "^1.5.1",
"babel-plugin-react-native-web": "^0.19.10",
"boxen": "^5.0.1",
"chromatic": "^10.2.0",
"concurrently": "^8.2.2",
"dedent": "^1.5.1",
"eslint": "^8.56.0",
"eslint-plugin-ft-flow": "^3.0.2",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-storybook": "^0.8.0",
"expo-linear-gradient": "^12.5.0",
"native-base": "^3.4.28",
"nativewind": "^4.0.1",
"normalize-css-color": "^1.0.2",
"postcss-import": "^16.0.0",
"postcss-loader": "^8.1.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.73.4",
"react-native-gesture-handler": "^2.14.0",
"react-native-paper": "^5.11.7",
"react-native-reanimated": "^3.6.1",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-native-svg": "^14.1.0",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "^0.19.10",
"rimraf": "^5.0.5",
"storybook": "^8.3.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"zx": "^6.1.0"
},
"peerDependencies": {
"@babel/preset-react": "*",
"@react-native/babel-preset": "*",
"babel-plugin-react-native-web": "*",
"metro-react-native-babel-preset": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@react-native/babel-preset": {
"optional": true
},
"metro-react-native-babel-preset": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "React Native Web",
"supportedFrameworks": [
"react-native"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"packageManager": "yarn@4.1.0"
}