-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "expo-boilerplate",
"version": "1.0.1",
"description": "React Native Expo boilerplate with Typescript support",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "nyc jest --coverage",
"posttest": "nyc report --reporter=json > coverage/coverage.json"
},
"keywords": [
"react",
"react-native",
"expo",
"typescript"
],
"author": "Pankod Inc.",
"contributors": [
{
"name": "aydinakyol",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@pankod/project-splash": "git+https://github.com/pankod/project-splash.git",
"@types/enzyme": "^3.9.2",
"@types/jest": "^24.0.13",
"expo": "^35.0.0",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz"
},
"devDependencies": {
"@types/expo": "^32.0.13",
"@types/react-native": "^0.57.65",
"babel-preset-expo": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"jest": "^24.8.0",
"jest-expo": "^35.0.0",
"module-resolver": "^1.0.0",
"nyc": "^14.1.1",
"react-dom": "16.8.3",
"typescript": "^3.4.5"
},
"jest": {
"preset": "jest-expo",
"testMatch": [
"**/__tests__/**/*.[tj]s?(x)",
"**/?(*.)(spec|test).[tj]s?(x)"
],
"setupFiles": [
"./test/setupTests.js"
]
}
}