-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 KB
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
{
"name": "stackeer",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --silent",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"postinstall": "patch-package && rm -rf ./node_modules/react-native-reanimated/react-native-reanimated.d.ts",
"dependencies": {
"@types/react-native-vector-icons": "^6.4.10",
"axios": "^0.24.0",
"moment": "^2.29.1",
"patch-package": "^6.4.7",
"react": "17.0.2",
"react-native": "0.66.3",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.3.0-beta.3",
"react-native-vector-icons": "^9.0.0",
"react-native-webview": "^11.14.4",
"ts-jest": "^27.0.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^8.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.2",
"@types/react-native": "^0.66.4",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"jest": "^27.0.0",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!@react-native|react-native)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
}
}