forked from ZeusLN/zeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "zeus",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"patch": "git apply patches/RCTHTTPRequestHandler.mm.patch",
"patch-android-release": "git apply patches/rnck-build.gradle.patch",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"axios": "0.19.0",
"base-64": "0.1.0",
"dateformat": "3.0.3",
"identicon.js": "2.3.3",
"lodash": "4.17.11",
"mobx": "4.9.1",
"mobx-react": "5.4.3",
"object-hash": "1.3.1",
"react": "16.6.3",
"react-native": "0.59.8",
"react-native-camera-kit": "7.3.7",
"react-native-data-table": "0.2.1",
"react-native-elements": "1.1.0",
"react-native-gesture-handler": "1.0.15",
"react-native-keychain": "3.0.0",
"react-native-linear-gradient": "2.5.3",
"react-native-permissions": "1.1.1",
"react-native-qrcode": "0.2.7",
"react-native-vector-icons": "6.2.0",
"react-navigation": "3.0.9",
"realm": "2.26.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.3.0",
"@types/base-64": "0.1.3",
"@types/jest": "23.3.13",
"@types/lodash": "4.14.120",
"@types/react": "16.7.22",
"@types/react-native": "0.57.32",
"@types/react-native-permissions": "1.1.1",
"@types/react-native-qrcode": "0.2.2",
"@types/react-native-vector-icons": "4.6.4",
"@types/react-navigation": "3.0.1",
"@types/react-test-renderer": "16.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.0.0",
"jest": "24.0.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3",
"ts-jest": "23.10.5",
"typescript": "3.2.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/_tests_/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}