This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
87 lines (87 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ReactNativeApp",
"version": "0.0.6",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"android:build-apk": "cd android && ./gradlew assembleRelease && cd ..",
"postinstall": "jetify && react-native link",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/masked-view": "^0.1.9",
"@react-navigation/native": "^5.2.3",
"@react-navigation/stack": "^5.2.18",
"i18next": "^19.4.2",
"i18next-xhr-backend": "^3.2.2",
"react": "16.11.0",
"react-i18next": "^11.3.4",
"react-native": "0.62.2",
"react-native-background-timer": "^2.2.0",
"react-native-camera": "^3.23.1",
"react-native-elements": "^2.0.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-get-random-values": "^1.3.1",
"react-native-ito": "git://github.com/ito-org/react-native-ito.git#master",
"react-native-reanimated": "^1.8.0",
"react-native-responsive-screen": "^1.4.1",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.7.0",
"react-native-svg": "^12.1.0",
"react-native-vector-icons": "^6.6.0",
"util": "^0.12.2",
"snyk": "^1.316.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^1.1.0",
"@types/jest": "^25.2.1",
"@types/react-native": "^0.62.2",
"@types/react-native-background-timer": "^2.0.0",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-jest": "^25.5.1",
"eslint": "^6.5.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-transform-stub": "^2.0.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-test-renderer": "16.13.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./jestSetup.js",
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"moduleNameMapper": {
"^.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
}
},
"snyk": true
}