-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.42 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
{
"name": "react-native-typescript-template-softx0",
"version": "0.0.6",
"description": "React Native Custom Template created by Softx0 for my own projects and share with the community",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"build:ios": "npx react-native bundle --entry-file ./index.js --bundle-output ios/main.jsbundle --dev=false --platform='ios' --assets-dest='./ios'",
"prettier-format": "prettier --write .",
"prettier-watch-windows": "onchange ./**/*.{ts,js,tsx,jsx} -- prettier --write {{changed}}",
"prettier-watch-mac": "onchange \"**/*.{js,ts,tsx,jsx}\" -- prettier --write {{changed}}",
"lint-fix": "eslint app --ext js,ts,tsx,jsx --report-unused-disable-directives --max-warnings 20 --fix",
"lint-and-prettier": "yarn run prettier-format && yarn run lint-fix",
"prepare": "husky"
},
"dependencies": {
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@tanstack/react-query": "^5.59.0",
"react": "18.3.1",
"react-native": "0.75.4",
"react-native-mmkv": "^3.0.2",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.35.0",
"react-native-unistyles": "^2.10.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@tanstack/eslint-plugin-query": "^5.59.1",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-sonarjs": "^2.0.3",
"flow-bin": "^0.247.1",
"husky": "^9.1.6",
"jest": "^29.6.3",
"lint-staged": "^15.2.10",
"prettier": "2.8.8",
"react-native-svg": "^15.7.1",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn run lint-and-prettier"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}