-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 4.3 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "lunes",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"android": "react-native run-android --no-packager",
"android:production": "react-native run-android --no-packager --variant=release",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --verbose --maxWorkers=1",
"test:changed": "yarn run test -o",
"test:update": "yarn run test -u --maxWorkers=1",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn run eslint --quiet --format junit -o reports/lint/junit-lint.xml",
"lint:changed": "eslint . -c ./.eslintrc_changed.js",
"prettier:check": "yarn prettier --check .",
"prettier:write": "yarn prettier --write .",
"ts:check": "tsc --build",
"postinstall": "patch-package",
"circleci:update-config": "{ cat .circleci/autogenerated_header.yml; circleci config pack .circleci/src; } > .circleci/config.yml && circleci config validate",
"create-release-note": "bash ./release-notes/createReleaseNotes.sh $1"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-native-picker/picker": "^2.7.2",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/elements": "^1.3.30",
"@react-navigation/native": "6.1.17",
"@react-navigation/stack": "6.3.29",
"@sentry/react-native": "^5.20.0",
"@sentry/types": "^7.108.0",
"axios": "^1.6.8",
"axios-cache-interceptor": "1.5.1",
"deprecated-react-native-prop-types": "^4.0.0",
"normalize-strings": "^1.1.1",
"react": "18.1.0",
"react-native": "0.70.9",
"react-native-audio-recorder-player": "3.5.1",
"react-native-camera": "4.2.1",
"react-native-device-info": "^10.13.1",
"react-native-element-dropdown": "^2.10.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "2.9.0",
"react-native-image-crop-picker": "^0.40.3",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "5.12.3",
"react-native-permissions": "^4.1.5",
"react-native-popover-view": "^5.1.8",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "2.17.0",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "^4.9.0",
"react-native-screens": "3.18.2",
"react-native-sound-player": "0.13.2",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^15.1.0",
"react-native-svg-transformer": "^1.3.0",
"react-native-tts": "4.1.0",
"react-native-vector-icons": "^10.0.3",
"react-navigation-header-buttons": "^10.0.0",
"string-similarity": "^4.0.4",
"styled-components": "^6.1.8",
"victory-native": "^36.9.2"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@babel/runtime": "^7.24.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/babel__core": "^7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react-native": "^0.70.19",
"@types/react-test-renderer": "^18.0.7",
"@types/string-similarity": "^4.0.2",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-diff": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-jsx-expressions": "^1.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"metro-react-native-babel-preset": "0.72.3",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}