forked from Flaque/quirk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"lint": "tslint src/**/*.ts src/**/*.tsx",
"test": "jest",
"ship": "./scripts/ship.sh"
},
"dependencies": {
"@expo/vector-icons": "^8.0.0",
"@types/react-navigation": "^3.0.1",
"expo": "^31.0.6",
"i18n-js": "^3.2.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz",
"react-native-autogrow-textinput": "^5.2.0",
"react-native-keyboard-aware-scroll-view": "^0.7.4",
"react-native-pose": "^0.9.0",
"react-native-svg": "^8.0.8",
"react-native-swiper": "^1.5.14",
"react-navigation": "^3.0.8",
"safe-json-stringify": "^1.2.0",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/expo": "^31.0.5",
"@types/expo__vector-icons": "^6.2.3",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.18",
"@types/react-native": "^0.57.22",
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.0.0",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"prettier": "1.15.3",
"react-native-typescript-transformer": "^1.2.11",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"xo": {
"parser": "babel-eslint",
"prettier": true,
"space": true,
"rules": {
"unicorn/filename-case": false,
"react/require-default-props": false
},
"extends": "xo-react"
},
"private": true
}