-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "RipioRNChallenge",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint \"**/*.{ts,tsx}\" --quiet --color"
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.11.1",
"@react-native-community/hooks": "2.8.1",
"@react-navigation/native": "6.1.1",
"@react-navigation/stack": "6.3.9",
"@rneui/base": "4.0.0-rc.7",
"@rneui/themed": "4.0.0-rc.7",
"bignumber.js": "9.1.1",
"moment": "^2.29.4",
"multicoin-address-validator": "0.5.9",
"react": "18.1.0",
"react-native": "0.70.6",
"react-native-gesture-handler": "2.8.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "3.18.2",
"react-native-toast-message": "^2.1.5",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.20.6",
"@react-native-community/eslint-config": "3.0.1",
"@testing-library/jest-native": "5.3.2",
"@testing-library/react-native": "11.5.0",
"@tsconfig/react-native": "2.0.3",
"@types/jest": "27.0.2",
"@types/multicoin-address-validator": "0.5.0",
"@types/react": "18.0.21",
"@types/react-native": "0.70.6",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.3",
"eslint-plugin-prettier": "4.0.0",
"husky": "4.3.8",
"jest": "29.3.1",
"jest-transform-stub": "2.0.0",
"metro-react-native-babel-preset": "0.72.3",
"prettier": "2.3.2",
"react-test-renderer": "18.2.0",
"ts-jest": "29.0.3",
"typescript": "4.8.3"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit",
"pre-push": "yarn test"
}
}
}