-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.45 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"dev:android": "cp ./app.json.dev ./app.json && expo start --android",
"prod:android": "cp ./app.json.prod ./app.json && expo start --android",
"ios": "rm ./app.json && cp ./app.json.dev ./app.json && expo start --ios",
"dev:web": "cp ./app.json.dev ./app.json && expo start --web",
"eject": "expo eject",
"deploy:web": "rm ./app.json && cp ./app.json.prod ./app.json && expo build:web && cp ./_redirects ./web-build && netlify deploy --dir web-build --prod",
"build:android": "rm ./app.json && cp ./app.json.prod ./app.json && expo build:android --clear-credentials -t app-bundle",
"update:android": "rm ./app.json && cp ./app.json.prod ./app.json && expo publish",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf node_modules/ && rm yarn.lock && yarn cache clean && yarn install",
"graphql:updateSchema": "get-graphql-schema http://192.168.1.132:3001/graphql > schema.graphql",
"graphql:updateSchemaJSON": "get-graphql-schema http://192.168.1.132:3001/graphql > schema.graphql.json --json",
"prestorybook": "rnstl",
"storybook": "start-storybook -p 7007"
},
"dependencies": {
"@date-io/moment": "^1.3.11",
"@material-ui/core": "^4.5.1",
"@material-ui/pickers": "^3.2.7",
"@react-navigation/web": "^1.0.0-alpha.9",
"@sentry/browser": "^5.10.1",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"axios": "^0.19.0",
"error-handling-utils": "^1.1.0",
"events": "^3.0.0",
"expo": "^35.0.0",
"expo-asset": "~7.0.0",
"expo-constants": "~7.0.0",
"expo-font": "~7.0.0",
"expo-image-picker": "~7.0.0",
"expo-localization": "~7.0.0",
"graphql": "^14.5.7",
"graphql-anywhere": "^4.2.4",
"graphql-tag": "^2.10.1",
"i18n-js": "^3.3.0",
"lodash": "^4.17.15",
"modal-react-native-web": "^0.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-apollo": "^3.1.1",
"react-dom": "^16.10.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-calendars": "^1.212.0",
"react-native-elements": "^1.2.6",
"react-native-gesture-handler": "~1.3.0",
"react-native-gifted-chat": "^0.13.0",
"react-native-google-static-map": "fede-rodes/react-native-google-static-map",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-map-link": "^2.5.1",
"react-native-material-dropdown": "^0.11.1",
"react-native-material-textfield": "^0.12.0",
"react-native-modal-datetime-picker": "^7.5.0",
"react-native-popup-menu": "^0.15.6",
"react-native-reanimated": "~1.2.0",
"react-native-screens": "~1.0.0-alpha.23",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.10",
"react-navigation-hooks": "^1.1.0",
"react-navigation-stack": "^1.7.3",
"react-navigation-tabs": "^1.2.0",
"recompose": "^0.30.0",
"sentry-expo": "^2.0.1",
"sha1": "^1.1.1",
"styled-components": "5.0.0-beta.8",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@expo/webpack-config": "^0.7.12",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react-native": "^5.2.1",
"@storybook/react-native-server": "^5.2.1",
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"apollo-link-schema": "^1.2.4",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-expo": "^7.0.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.5.1",
"faker": "^4.1.0",
"get-graphql-schema": "^2.1.2",
"graphql-tools": "^4.0.5",
"node-fetch": "^2.6.0",
"react-native-storybook-loader": "^1.8.1",
"typescript": "^3.4.5"
},
"private": true,
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/[Ss]tories.tsx",
"outputFile": "./storybook/storyLoader.ts"
}
}
}