-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.04 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.04 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
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
{
"name": "app-template",
"version": "1.0.0",
"description": "React Native app template with TypeScript, WatermelonDB, and OpenSpec",
"private": true,
"keywords": [
"react-native",
"template",
"typescript",
"watermelondb",
"atomic-design",
"openspec"
],
"repository": {
"type": "git",
"url": "https://github.com/amitayks/react-native-template"
},
"author": "{{AUTHOR_NAME}}",
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"apk": "cd android && .\\gradlew.bat assembleRelease",
"aab": "npx react-native build-android --mode=release",
"ca": "cd android && .\\gradlew.bat clean && cd ..",
"cr": "npx react-native clean",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"bump": "node bump-version.js"
},
"dependencies": {
"@bam.tech/react-native-image-resizer": "^3.0.11",
"@lodev09/react-native-true-sheet": "^3.1.0",
"@mhpdev/react-native-haptics": "^1.0.1",
"@notifee/react-native": "^9.1.8",
"@nozbe/simdjson": "^3.9.4",
"@nozbe/watermelondb": "^0.28.0",
"@react-native-camera-roll/camera-roll": "^7.10.2",
"@react-native-community/cli-platform-android": "^20.0.2",
"@react-native-ml-kit/image-labeling": "^2.0.0",
"@react-native-ml-kit/text-recognition": "^2.0.0",
"@react-navigation/bottom-tabs": "^7.4.8",
"@react-navigation/native": "^7.1.18",
"@react-navigation/stack": "^7.4.9",
"@shopify/flash-list": "^2.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"minisearch": "^7.2.0",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-background-actions": "^4.0.1",
"react-native-device-info": "^14.1.1",
"react-native-fast-image": "^8.6.3",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.28.0",
"react-native-keychain": "^10.0.0",
"react-native-mmkv": "^4.1.0",
"react-native-nitro-modules": "^0.31.10",
"react-native-pager-view": "^6.9.1",
"react-native-paper": "^5.14.5",
"react-native-permissions": "^5.4.2",
"react-native-quick-crypto": "^0.7.17",
"react-native-reanimated": "^3.19.2",
"react-native-reanimated-dnd": "^1.1.0",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.16.0",
"react-native-toast-message": "^2.3.3",
"react-native-vector-icons": "^10.3.0",
"react-native-vision-camera": "^4.7.2"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-class-static-block": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/runtime": "^7.28.4",
"@biomejs/biome": "^2.2.5",
"@react-native-community/cli": "^20.0.2",
"@react-native/babel-preset": "^0.81.4",
"@react-native/metro-config": "^0.81.4",
"@testing-library/react-native": "^13.3.3",
"@types/react": "^19.2.1",
"@types/react-native": "^0.72.8",
"jest": "^30.2.0",
"metro-react-native-babel-preset": "^0.77.0",
"typescript": "^5.9.3"
}
}