-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.25 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.25 KB
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
{
"name": "lunes",
"version": "0.0.1",
"private": true,
"packageManager": "yarn@3.2.2",
"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": "TZ=UTC 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:changed": "eslint . -c ./.eslintrc_changed.js",
"prettier:check": "yarn prettier --check .",
"prettier:write": "yarn prettier -l --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"
},
"dependencies": {
"@notifee/react-native": "^9.1.8",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-picker/picker": "^2.9.0",
"@react-navigation/bottom-tabs": "^7.10.1",
"@react-navigation/elements": "^2.9.5",
"@react-navigation/material-top-tabs": "^7.4.13",
"@react-navigation/native": "7.1.28",
"@react-navigation/stack": "7.6.16",
"@sentry/react-native": "^6.10.0",
"axios": "^1.13.5",
"axios-cache-interceptor": "1.11.1",
"normalize-strings": "^1.1.1",
"react": "19.1.0",
"react-native": "^0.80.3",
"react-native-audio-recorder-player": "^3.6.12",
"react-native-device-info": "^14.0.4",
"react-native-element-dropdown": "^2.12.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.28.0",
"react-native-image-picker": "^8.2.1",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-pager-view": "^8.0.0",
"react-native-paper": "5.14.5",
"react-native-permissions": "^5.4.2",
"react-native-progress": "^5.0.1",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": ">=4.14.0 <4.19.0",
"react-native-sound-player": "0.14.5",
"react-native-svg": "15.12.1",
"react-native-svg-transformer": "^1.5.1",
"react-native-tts": "4.1.1",
"react-native-vision-camera": "^4.7.2",
"react-native-volume-manager": "^2.0.8",
"react-navigation-header-buttons": "^11.2.1",
"string-similarity": "^4.0.4",
"styled-components": "^6.1.17",
"victory-native": "^36.9.2"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/preset-env": "^7.28.4",
"@babel/preset-typescript": "^7.28.4",
"@babel/runtime": "^7.28.4",
"@react-native-community/cli": "20.0.2",
"@react-native-community/cli-platform-android": "20.0.2",
"@react-native-community/cli-platform-ios": "20.0.2",
"@react-native/babel-preset": "0.80.3",
"@react-native/metro-config": "0.80.3",
"@react-native/typescript-config": "0.80.3",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@types/react-test-renderer": "^19.1.0",
"@types/string-similarity": "^4.0.2",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"babel-jest": "^29.7.0",
"babel-plugin-react-compiler": "^1.0.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.7.4",
"react-test-renderer": "19.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}