This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
119 lines (119 loc) · 4 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
{
"name": "@gluestack/ui-storybook",
"private": true,
"version": "0.1.0",
"main": "index.js",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"license": "MIT",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"update-stories": "sb-rn-get-stories --config-path .ondevice",
"storybook-watcher": "sb-rn-watcher --config-path .ondevice",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6007",
"build-storybook": "build-storybook",
"build": "bob build",
"release": "release-it",
"test": "jest",
"update-snapshot": "jest -u"
},
"dependencies": {
"@expo/html-elements": "^0.4.2",
"@gluestack-style/react": "1.0.8",
"@gluestack-ui/actionsheet": "^0.2.16",
"@gluestack-ui/alert-dialog": "^0.1.14",
"@gluestack-ui/button": "^0.1.23",
"@gluestack-ui/pressable": "^0.1.9",
"@gluestack-ui/themed": "^0.1.5",
"@gluestack-ui/transitions": "^0.1.9",
"@gluestack/design-system": "^0.4.28",
"@legendapp/motion": "^2.2.0",
"@react-aria/button": "^3.7.0",
"@react-aria/focus": "^3.11.0",
"@react-aria/interactions": "^3.14.0",
"@react-aria/menu": "^3.8.1",
"@react-aria/overlays": "^3.13.0",
"@react-aria/separator": "^3.3.0",
"@react-aria/utils": "^3.15.0",
"@react-native-aria/button": "^0.2.4",
"@react-native-aria/overlays": "0.3.7",
"@react-native-aria/separator": "^0.2.5",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/datetimepicker": "6.5.2",
"@react-native-community/slider": "4.2.4",
"@react-stately/collections": "^3.6.0",
"@react-stately/tree": "^3.5.0",
"expo": "^47.0.0",
"expo-linear-gradient": "~12.0.1",
"expo-status-bar": "~1.4.2",
"fs": "^0.0.1-security",
"lucide-react-native": "^0.236.0",
"moti": "^0.26.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-native-gesture-handler": "^2.13.1",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-svg": "13.4.0",
"react-native-web": "^0.19.7",
"react-stately": "^3.21.0",
"ts-jest": "^29.1.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/generator": "^7.20.7",
"@babel/parser": "^7.20.13",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/traverse": "^7.20.13",
"@babel/types": "^7.20.7",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-controls": "^6.5.14",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addon-ondevice-actions": "6.5.0-rc.12",
"@storybook/addon-ondevice-backgrounds": "6.5.0-rc.12",
"@storybook/addon-ondevice-controls": "6.5.0-rc.12",
"@storybook/addon-ondevice-notes": "6.5.0-rc.12",
"@storybook/addon-react-native-web": "^0.0.19",
"@storybook/client-api": "^6.5.15",
"@storybook/react": "^6.5.14",
"@storybook/react-native": "6.5.0-rc.12",
"@types/react": "^18.0.27",
"@types/react-native": "~0.70.6",
"babel-loader": "^8.2.3",
"babel-plugin-react-docgen-typescript": "^1.5.1",
"babel-plugin-react-native-web": "^0.18.10",
"find-yarn-workspace-root": "^2.0.0",
"jest-environment-jsdom": "^29.5.0",
"react-native-builder-bob": "^0.20.3",
"storybook-dark-mode": "^2.0.4",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@gluestack-style/legend-motion-animation-driver": "*",
"@gluestack-style/moti-animation-driver": "*",
"@gluestack-style/animation-resolver": "*",
"react": "*",
"react-dom": "*",
"react-native": "*",
"react-native-web": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
[
"module"
],
"typescript"
]
}
}