-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"start-nocache": "expo r -c",
"android": "expo start --android",
"ios": "expo start --ios",
"typecheck": "tsc",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": {
"jsx": "react"
}
}
}
},
"dependencies": {
"@expo/samples": "2.1.1",
"expo": "^32.0.0",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-navigation": "^3.0.9",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/expo": "31.0.8",
"@types/expo__vector-icons": "6.2.3",
"@types/jest": "23.3.13",
"@types/react": "16.8.1",
"@types/react-native": "0.57.32",
"@types/react-navigation": "3.0.1",
"@types/react-redux": "^7.0.1",
"@types/react-test-renderer": "16.0.3",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.6",
"jest": "23.6.0",
"jest-expo": "32.0.0",
"react-test-renderer": "16.7.0",
"ts-jest": "23.10.5",
"typescript": "3.2.4"
},
"private": true
}