-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
94 lines (94 loc) · 3.6 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
89
90
91
92
93
94
{
"name": "react-native-typescript-boilerplate",
"version": "4.1.0",
"private": false,
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"start": "react-native start --reset-cache",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier && npm run husky:lint",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"husky:prettier": "npx husky set .husky/pre-commit 'npm run prettier'",
"husky:lint": "npx husky add .husky/pre-commit 'npm run lint'",
"clean-up": "rm -rf .git && rm -rf ./assets && git init && npm run husky:setup",
"clean:android": "cd android && ./gradlew clean",
"debug:android": "cd android && ./gradlew assembleDebug",
"release:android": "cd android && ./gradlew assembleRelease",
"release:play": "cd android && ./gradlew bundleRelease",
"test:apk": "react-native run-android --variant=release",
"prepare": "husky install",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write '**/*.{js,ts,tsx,json}'"
},
"dependencies": {
"@freakycoder/react-native-bounceable": "1.0.3",
"@freakycoder/react-native-custom-text": "0.1.2",
"@freakycoder/react-native-helpers": "2.3.0",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"axios": "^1.6.7",
"axios-hooks": "^5.0.2",
"events": "^3.3.0",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-dynamic-vector-icons": "1.3.0",
"react-native-gesture-handler": "^2.14.1",
"react-native-localization": "^2.3.2",
"react-native-reanimated": "^3.6.2",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-native-splash-screen": "^3.3.0",
"react-native-vector-icons": "^10.0.3",
"react-navigation-helpers": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "0.74.85",
"@react-native/typescript-config": "0.74.85",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@tsconfig/react-native": "^3.0.3",
"@types/events": "^3.0.3",
"@types/react": "^18.2.6",
"@types/react-native": "0.72.8",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "3.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.0",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.2.4",
"react-native-codegen": "0.71.5",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"resolutions": {
"@types/react": "18"
},
"engines": {
"node": ">=18"
}
}