-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.93 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
{
"name": "ReactNativeTypescriptBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "node src/scripts/terminal/lint.mjs",
"prettier": "node src/scripts/terminal/prettier.mjs",
"start": "react-native start",
"start:fresh": "react-native start --reset-cache",
"test": "jest",
"prepare": "husky",
"clean:showcase": "bash scripts/clean-showcase.sh"
},
"dependencies": {
"@freakycoder/react-native-bounceable": "^2.1.0",
"@freakycoder/react-native-custom-text": "^0.1.2",
"@freakycoder/react-native-helpers": "^2.5.1",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native/new-app-screen": "0.84.1",
"@react-navigation/bottom-tabs": "^7.15.6",
"@react-navigation/native": "^7.1.34",
"@react-navigation/stack": "^7.8.6",
"axios": "^1.13.6",
"axios-hooks": "^5.1.1",
"event": "^1.0.0",
"i18next": "^25.8.20",
"react": "19.2.3",
"react-i18next": "^16.5.8",
"react-native": "0.84.1",
"react-native-dynamic-vector-icons": "^2.0.0",
"react-native-gesture-handler": "^2.30.0",
"react-native-reanimated": "^4.2.2",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-splash-screen": "^3.3.0",
"react-native-vector-icons": "^10.3.0",
"react-native-worklets": "^0.7.4",
"react-navigation-helpers": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "^29.5.13",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"babel-plugin-module-resolver": "^5.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-ft-flow": "3.0.11",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-native": "5.0.0",
"eslint-plugin-unused-imports": "4.4.1",
"husky": "^9.1.7",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.8.1",
"react-test-renderer": "19.2.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">= 22.11.0"
}
}