-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.05 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.05 KB
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
{
"name": "example-app",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-native-fontawesome": "0.3.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "7.3.10",
"@react-navigation/native": "7.0.14",
"@react-navigation/native-stack": "7.2.0",
"@shopify/flash-list": "2.0.3",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-gesture-handler": "2.28.0",
"react-native-haptic-feedback": "2.3.3",
"react-native-reanimated": "patch:react-native-reanimated@npm%3A4.1.3#~/.yarn/patches/react-native-reanimated-npm-4.1.3-f13c1e8648.patch",
"react-native-safe-area-context": "5.3.0",
"react-native-screens": "4.15.4",
"react-native-sortables": "workspace:*",
"react-native-svg": "15.12.1",
"react-native-worklets": "0.5.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@gorhom/portal": "^1.0.14",
"@react-native-community/cli": "19.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.81.4",
"@react-native/metro-config": "0.81.4",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.5.1",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.28.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"madge": "^8.0.0",
"prettier": "^3.3.2",
"react-test-renderer": "19.1.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"bash -c tsc --noEmit"
]
},
"react-native": "index.ts",
"scripts": {
"circular-dependency-check": "yarn madge --extensions js,jsx,ts,tsx --circular src",
"format": "prettier --write .",
"lint": "eslint .",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit"
}
}