-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.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
{
"name": "react-native-boilerplate",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"deploy": "npx expo export -p web && npx eas-cli@latest deploy",
"lint": "expo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"clsx": "^2.1.1",
"expo": "54.0.1",
"expo-constants": "~18.0.7",
"expo-linking": "~8.0.7",
"expo-router": "~6.0.0",
"expo-splash-screen": "~31.0.8",
"expo-status-bar": "~3.0.7",
"expo-system-ui": "~6.0.7",
"nativewind": "^4.1.23",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-reanimated": "~4.1.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.5.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.1.10",
"eslint": "^9.34.0",
"eslint-config-expo": "~10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-check-file": "^3.3.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.2",
"eslint-plugin-unused-imports": "^4.2.0",
"husky": "^9.1.7",
"jest": "~29.7.0",
"jest-expo": "~54.0.10",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"react-test-renderer": "^19.1.0",
"typescript": "~5.9.2"
},
"private": true,
"lint-staged": {
"**/*.(ts|tsx|js|jsx)": [
"prettier --write",
"eslint --fix"
]
}
}