-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"test": "jest --silent",
"test:watch": "jest --watch",
"ios": "expo start --ios",
"publish:dev": "expo publish --release-channel dev",
"publish:prod": "expo publish --release-channel production",
"build:dev": "expo build:ios --release-channel dev",
"build:prod": "expo build:ios --release-channel production",
"lint": "eslint '*/**/*.{ts,tsx}' --ignore-pattern node_modules/"
},
"dependencies": {
"@react-native-community/masked-view": "0.1.6",
"@react-navigation/native": "^5.0.9",
"@react-navigation/stack": "^5.1.1",
"@reduxjs/toolkit": "^1.2.5",
"date-fns": "^2.11.0",
"expo": "^37.0.0",
"expo-haptics": "~8.1.0",
"expo-store-review": "~2.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-appearance": "~0.3.3",
"react-native-gesture-handler": "~1.6.0",
"react-native-reanimated": "~1.7.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "~2.2.0",
"react-native-syntax-highlighter": "^2.1.0",
"react-native-typography": "^1.4.1",
"react-native-web": "^0.11.7",
"react-redux": "^7.2.0",
"react-syntax-highlighter": "^12.2.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/react-redux": "^7.1.7",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "~2.14.0",
"@typescript-eslint/parser": "~2.14.0",
"babel-preset-expo": "^8.1.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.9.0",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-jest": "~23.2.0",
"eslint-plugin-react": "^7.19.0",
"fetch-mock": "^9.4.0",
"jest": "^25.4.0",
"jest-expo": "^37.0.0",
"prettier": "~1.19.1",
"redux-mock-store": "^1.5.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"private": true,
"jest": {
"preset": "jest-expo",
"globals": {
"ts-jest": {
"tsConfig": {
"jsx": "react"
}
}
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|sentry-expo|native-base)"
]
}
}