-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "sistema",
"version": "0.0.1",
"private": true,
"scripts": {
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"lint:fix": "yarn eslint --fix \"src/\"",
"cm": "cz",
"prepare": "husky install"
},
"dependencies": {
"@react-native-community/netinfo": "^9.4.1",
"@react-navigation/bottom-tabs": "^6.4.3",
"@react-navigation/native": "^6.0.16",
"@react-navigation/stack": "^6.3.7",
"@reduxjs/toolkit": "^1.9.1",
"@tanstack/react-query": "^4.28.0",
"axios": "^1.2.0",
"axios-retry": "^3.3.1",
"crypto-js": "3.1.9-1",
"jsrsasign": "^10.6.1",
"jsrsasign-util": "^1.0.5",
"react": "18.1.0",
"react-native": "0.70.6",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.8.0",
"react-native-html-to-pdf": "^0.12.0",
"react-native-image-picker": "^5.4.0",
"react-native-reanimated": "3.0.1",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-share": "^8.2.1",
"react-native-size-matters": "^0.4.0",
"react-native-svg": "^13.6.0",
"react-native-vector-icons": "^9.2.0",
"react-native-video": "^5.2.1",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@redux-devtools/core": "^3.13.1",
"@types/react-native-share": "^3.3.3",
"babel-jest": "^26.6.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "18.1.0"
},
"jest": {
"preset": "react-native"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}