-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.14 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"watch": "ts-node-dev --respawn server/index.ts",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@react-native-community/masked-view": "0.1.6",
"@react-native-community/picker": "^1.6.1",
"@react-navigation/bottom-tabs": "^5.5.1",
"@react-navigation/native": "^5.5.0",
"@react-navigation/stack": "^5.4.1",
"@types/node": "^14.0.9",
"@types/react-native-datepicker": "^1.7.0",
"@types/react-native-material-dropdown": "^0.11.4",
"@types/react-redux": "^7.1.9",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.14.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"expo": "^37.0.12",
"expo-cli": "^3.21.3",
"graphql-tag": "^2.10.3",
"pg": "^8.2.1",
"react": "~16.9.0",
"react-apollo": "^3.1.5",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-datepicker": "^1.7.2",
"react-native-elements": "^2.0.1",
"react-native-gesture-handler": "~1.6.0",
"react-native-material-dropdown": "^0.11.1",
"react-native-reanimated": "~1.7.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "~2.2.0",
"react-native-web": "~0.11.7",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.11",
"sequelize-cli": "^5.5.1",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@types/react": "~16.9.23",
"@types/react-native": "~0.61.17",
"babel-preset-expo": "~8.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "~3.8.3"
},
"private": true
}