-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
{
"name": "reactnativestarter",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"release": "npx react-native run-android --variant=release",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"build": "cd android && ./gradlew bundleRelease",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@apollo/react-hooks": "^4.0.0",
"@cobuildlab/react-simple-state": "^0.7.2",
"@jest/globals": "^29.3.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.0.14",
"@types/react-native-auth0": "^2.13.1",
"@types/react-native-dotenv": "^0.2.0",
"graphql": "^16.3.0",
"graphql-anywhere": "^4.2.7",
"graphql-tag": "^2.12.6",
"jwt-decode": "^3.1.2",
"react": "18.1.0",
"react-native": "0.70.6",
"react-native-auth0": "^2.13.0",
"react-native-dotenv": "^3.3.1",
"react-native-gesture-handler": "^2.8.0",
"react-native-reanimated": "^2.13.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.2",
"@react-native-community/eslint-config": "^3.0.1",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^27.4.0",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^27.5.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jsdoc": "^37.8.2",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"metro-react-native-babel-preset": "0.72.3",
"prettier": "^2.5.1",
"react-test-renderer": "18.1.0",
"typescript": "^4.8.3"
},
"resolutions": {
"@types/react": "^18"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"!node_modules/"
],
"testPathIgnorePatterns": [
"<rootDir>/(android|ios|node_modules)/"
],
"testRegex": [
".test.ts$",
".test.tsx$"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}