-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "expo-typescript-babel7-jest",
"version": "0.1.0",
"private": true,
"dependencies": {
"expo": "^30.0.0",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz"
},
"devDependencies": {
"@types/expo": "27.0.13",
"@types/jest": "^22.2.3",
"@types/react": "^16.4.12",
"@types/react-native": "^0.56.14",
"@types/react-test-renderer": "^16.0.2",
"expo-cli": "^2.2.0",
"jest-expo": "^30.0.0",
"prettier": "^1.14.2",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.3.1",
"ts-jest": "^22.4.6",
"tslib": "^1.9.1",
"tslint": "^5.11.0",
"typescript": "3.0.1"
},
"engines": {
"node": "10.4.1"
},
"main": "./src/index.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo android",
"ios": "expo ios",
"test": "jest",
"tsc": "tsc --noEmit -p ./tsconfig.json",
"publish": "node ./scripts/publish --dev",
"publish:prod": "node ./scripts/publish"
},
"jest": {
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "jest-expo",
"testMatch": [
"**/__tests__/**/*.[tj]s?(x)",
"**/?(*.)(spec|test).[tj]s?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}