-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.8 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "concurrently \"yarn run start:expo\" \"yarn run start:typecheck\"",
"start:typecheck": "tsc --noEmit --watch",
"start:expo": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest",
"lint": "tslint src/**/*.{ts,tsx}",
"expo:build": "expo build:android",
"expo:publish": "expo publish"
},
"dependencies": {
"@expo/vector-icons": "^9.0.0",
"apollo-boost": "^0.1.27",
"expo": "^32.0.0",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"react": "16.5.0",
"react-apollo": "^2.4.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-animatable": "^1.3.1",
"react-native-platform-touchable": "^1.1.1",
"react-native-tab-view": "^1.3.1",
"react-navigation": "^3.0.9",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.1.0",
"@types/enzyme": "^3.1.15",
"@types/expo": "^31.0.7",
"@types/expo__vector-icons": "^6.2.3",
"@types/faker": "^4.1.5",
"@types/jest": "^23.3.12",
"@types/react": "^16.7.7",
"@types/react-native": "^0.57.26",
"@types/react-native-tab-view": "^1.0.2",
"@types/react-navigation": "^3.0.1",
"@types/styled-components": "^4.1.6",
"babel-preset-expo": "^5.0.0",
"concurrently": "^4.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"faker": "^4.1.0",
"jest-expo": "^32.0.0",
"react-dom": "^16.7.0",
"rosie": "^2.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"waait": "^1.0.2"
},
"private": true
}