-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.53 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
{
"name": "visite-o-congresso",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll",
"lint": "standard",
"lint:fix": "standard --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"jest": {
"preset": "jest-expo"
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"globals": [
"describe",
"test",
"jest",
"expect",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData",
"React$Element"
]
},
"dependencies": {
"@expo/samples": "2.1.1",
"expo": "^29.0.1",
"expo-analytics": "^1.0.7",
"hex-rgba": "^1.0.2",
"prop-types": "^15.6.2",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz",
"react-native-device-info": "^0.22.6",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-popup-menu": "^0.14.2",
"react-navigation": "^2.18.3",
"sentry-expo": "^1.10.0",
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"husky": "^1.2.0",
"jest-expo": "29.0.0",
"lint-staged": "^7.3.0",
"standard": "^11.0.1",
"tinify": "^1.6.0-beta.2",
"walk-sync": "^0.3.4"
}
}