-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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": "react_native_with_typescript_redux",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"build": "tsc",
"android": "adb reverse tcp:8081 tcp:8081 && node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios"
},
"dependencies": {
"babel-preset-react-native": "3.0.0",
"react": "16.0.0-alpha.12",
"react-native": "0.47.1",
"react-native-elements": "^0.16.0",
"react-native-fbsdk": "git+https://github.com/facebook/react-native-fbsdk",
"react-native-vector-icons": "^4.3.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.6",
"redux-thunk": "^2.2.0",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/enzyme": "^2.8.6",
"@types/jest": "^20.0.7",
"@types/react": "^16.0.3",
"@types/react-native": "^0.47.6",
"@types/react-native-elements": "^0.13.2",
"@types/react-native-fbsdk": "^0.6.0",
"@types/react-navigation": "^1.0.19",
"@types/react-redux": "^5.0.4",
"@types/react-test-renderer": "^15.5.4",
"babel-jest": "20.0.3",
"jest": "20.0.4",
"react-dom": "^15.6.1",
"react-test-renderer": "16.0.0-alpha.12",
"tslint": "^5.6.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/lib/"
],
"cacheDirectory": ".jest/cache"
}
}