-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.77 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
{
"name": "yelpexplorer",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"codegen": "npm run download-schema && npm run generate-graphql-types",
"download-schema": "node ./scripts/download-schema.js",
"generate-graphql-types": "apollo codegen:generate --localSchemaFile=./src/features/business/data/graphql/schema/schema.json --target=typescript --tagName=gql"
},
"dependencies": {
"@apollo/client": "^3.7.7",
"@react-navigation/native": "^6.1.3",
"@react-navigation/stack": "^6.3.12",
"graphql": "^16.6.0",
"react": "18.2.0",
"react-native": "0.71.2",
"react-native-gesture-handler": "^2.9.0",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.19.0",
"react-native-table-component": "^1.2.2"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.13",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-hooks": "^7.0.2",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-native": "^0.71.2",
"@types/react-native-table-component": "^1.2.4",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.4.2",
"eslint": "^8.33.0",
"jest": "^29.4.2",
"jest-fetch-mock": "^3.0.3",
"metro-react-native-babel-preset": "0.75.0",
"prettier": "^2.8.4",
"react-native-codegen": "^0.71.3",
"react-test-renderer": "18.2.0",
"typescript": "4.9.5"
},
"jest": {
"preset": "react-native"
}
}