-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.37 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
{
"name": "jean-test",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"start": "react-native start",
"test": "jest",
"openapi:gen": "typegen ./openapi/schema.yml > src/api/generated/client.d.ts && yarn openapi:convert",
"openapi:convert": "redocly bundle ./openapi/schema.yml -o ./src/api/generated/schema.json"
},
"dependencies": {
"@react-navigation/native": "7.0.13",
"@react-navigation/native-stack": "7.1.14",
"@tamagui/config": "1.120.0",
"@tamagui/core": "1.120.0",
"@tamagui/lucide-icons": "1.120.0",
"@tanstack/react-query": "5.62.3",
"openapi-client-axios": "7.5.5",
"react": "18.3.1",
"react-dom": "19.0.0",
"react-hook-form": "7.54.0",
"react-native": "0.76.3",
"react-native-safe-area-context": "5.0.0",
"react-native-screens": "4.3.0",
"react-native-svg": "15.10.1",
"tamagui": "1.120.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/runtime": "7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.76.3",
"@react-native/eslint-config": "0.76.3",
"@react-native/metro-config": "0.76.3",
"@react-native/typescript-config": "0.76.3",
"@redocly/cli": "1.26.0",
"@tamagui/babel-plugin": "1.120.0",
"@testing-library/react-native": "12.9.0",
"@types/jest": "29.5.14",
"@types/react": "18.2.6",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"babel-jest": "29.6.3",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-testing-library": "6.4.0",
"jest": "29.6.3",
"openapi-client-axios-typegen": "7.7.0",
"prettier": "3.4.2",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}