forked from ixartz/React-Native-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.68 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
{
"name": "react-native-boilerplate",
"version": "1.0.0",
"main": "Main.tsx",
"scripts": {
"start": "expo start --dev-client",
"dev:android": "expo start --android",
"dev:ios": "expo start --ios",
"web": "expo start --web",
"android": "expo run:android",
"ios": "expo run:ios",
"clean": "rimraf .expo android coverage ios",
"lint": "eslint .",
"format": "eslint --fix . && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"test": "jest",
"e2e:prepare": "expo prebuild",
"e2e:ios:build": "detox build --configuration ios.release",
"e2e:ios:test": "detox test --configuration ios.release",
"e2e:ios": "run-s e2e:ios:*",
"e2e:android:build": "detox build --configuration android.release",
"e2e:android:test": "detox test --configuration android.release",
"e2e:android": "run-s e2e:android:*",
"prepare": "husky install"
},
"dependencies": {
"expo": "^49.0.5",
"expo-constants": "~14.4.2",
"expo-linking": "~5.0.2",
"expo-router": "2.0.0",
"expo-splash-screen": "~0.20.4",
"expo-status-bar": "~1.6.0",
"nativewind": "^2.0.11",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-gesture-handler": "~2.9.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.1",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@config-plugins/detox": "^6.0.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.3",
"@types/detox": "^18.1.0",
"@types/jest": "^29.5.3",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"detox": "^20.11.1",
"eas-cli": "^3.17.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-expo": "^49.0.0",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"tailwindcss": "3.3.2",
"typescript": "^5.1.6"
}
}