-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.05 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
{
"name": "react-native-posts",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:active-arch": "react-native run-android --active-arch-only",
"ios": "react-native run-ios",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"start": "react-native start --reset-cache",
"test": "jest",
"pod:bundle": "cd ios && bundle install && NO_FLIPPER=1 RCT_NEW_ARCH_ENABLED=1 bundle exec pod install && cd ..",
"studio": "cd android && studio .",
"clean:watchman": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/metro-* && rm -rf $TMPDIR/haste-*",
"android:gradle-refresh": "cd android && ./gradlew --refresh-dependencies"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"dependencies": {
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/native": "6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@react-navigation/stack": "6.3.29",
"@tanstack/react-query": "5.29.2",
"axios": "1.6.8",
"react": "18.2.0",
"react-native": "0.73.7",
"react-native-error-boundary": "1.2.4",
"react-native-gesture-handler": "2.15.0",
"react-native-get-random-values": "^1.11.0",
"react-native-reanimated": "3.8.1",
"react-native-safe-area-context": "^4.9.0",
"react-native-screens": "3.30.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.73.21",
"@react-native/eslint-config": "0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@types/react": "^18.2.6",
"@types/react-native-get-random-values": "^1.8.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"husky": "^9.0.11",
"jest": "^29.6.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react-devtools": "^5.1.0",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}