-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 3.39 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
{
"name": "CineTasty",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start --reset-cache",
"android:run": "react-native run-android",
"android:clear": "cd android && ./gradlew clean && cd ..",
"ios:run": "react-native run-ios --udid \"1D1910C5-509C-4C67-8836-6BCE9B9242D1\"",
"ios:clear": "cd ios && rm -rf build && cd ..",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"prettier:fix": "prettier '**/*.+(ts|tsx)' --write",
"clear:cache": "watchman watch-del-all",
"clear": "kill $(lsof -t -i:8081); npm run ios:clear; npm run android:clear; npm run clear:cache",
"test": "jest --passWithNoTests --no-cache",
"test:watch": "jest --watch",
"test:integration": "npm test -- --watch --testMatch **/*.spec.tsx --runInBand",
"test:unit": "npm test -- --watch --testMatch **/*.test.tsx **/*.test.ts",
"test:coverage": "jest --coverage --passWithNoTests",
"schema:download": "npx apollo client:download-schema --endpoint=http://localhost:3000/!",
"schema:generate": "npx apollo codegen:generate src/types/schema.ts --localSchemaFile=schema.json --includes=src/**/*.ts,src/**/*.tsx --addTypename --target=typescript --outputFlat",
"types:generate": "npm run schema:download && npm run schema:generate",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-native-community/slider": "^4.4.3",
"@react-navigation/bottom-tabs": "^6.5.9",
"@react-navigation/native": "^6.1.8",
"@react-navigation/stack": "^6.3.18",
"graphql": "^15.8.0",
"i18next": "^23.5.1",
"react": "18.2.0",
"react-i18next": "^13.2.2",
"react-native": "0.72.5",
"react-native-dotenv": "^3.4.10",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.13.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-navigation-bar-color": "^2.0.2",
"react-native-reanimated": "^3.5.4",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.7.2",
"react-native-screens": "^3.25.0",
"react-native-svg": "^13.14.0",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@rnx-kit/metro-resolver-symlinks": "^0.1.33",
"@testing-library/react-native": "^12.3.0",
"@tsconfig/react-native": "^3.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.0.24",
"@types/react-native": "^0.72.3",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.28",
"apollo": "^2.34.0",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.19.0",
"husky": "^8.0.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^2.4.1",
"react-native-asset": "^2.1.1",
"react-test-renderer": "18.2.0",
"ts-jest": "^29.1.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
},
"overrides": {
"@apollographql/graphql-language-service-interface": {
"graphql": "^15.8.0"
}
}
}