-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
110 lines (110 loc) · 4.32 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
{
"name": "lunes",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"android": "react-native run-android --no-packager --active-arch-only",
"android:production": "react-native run-android --no-packager --mode=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": "^2.0.0",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native-picker/picker": "^2.9.0",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/elements": "^1.3.31",
"@react-navigation/native": "6.1.18",
"@react-navigation/stack": "6.4.1",
"@sentry/react-native": "^5.35.0",
"@sentry/types": "^8.38.0",
"axios": "^1.7.7",
"axios-cache-interceptor": "1.6.2",
"normalize-strings": "^1.1.1",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-audio-recorder-player": "^3.6.12",
"react-native-device-info": "^14.0.0",
"react-native-element-dropdown": "^2.12.2",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.20.2",
"react-native-image-picker": "^7.1.2",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "5.12.5",
"react-native-permissions": "^5.1.0",
"react-native-popover-view": "^5.1.9",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "^3.16.7",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.35.0",
"react-native-sound-player": "0.14.3",
"react-native-svg": "^15.9.0",
"react-native-svg-transformer": "^1.5.0",
"react-native-tts": "4.1.1",
"react-native-vector-icons": "^10.2.0",
"react-native-vision-camera": "^4.6.1",
"react-navigation-header-buttons": "^11.2.1",
"string-similarity": "^4.0.4",
"styled-components": "^6.1.13",
"victory-native": "^36.9.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native-community/cli": "15.1.2",
"@react-native-community/cli-platform-android": "15.1.2",
"@react-native-community/cli-platform-ios": "15.1.2",
"@react-native/babel-preset": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.8.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@types/react-test-renderer": "^18.3.0",
"@types/string-similarity": "^4.0.2",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-diff": "^2.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-jsx-expressions": "^1.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}