-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.33 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
{
"name": "womob",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"test": "jest",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint --cache \"./src/**/*.{ts,tsx,jsx,js}\" --max-warnings=0",
"lint:fix": "yarn lint --fix ",
"validate": "yarn prettier --check \"./src/**/*.{ts,tsx,js,jsx}\" && yarn lint ",
"format": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"format:test": "prettier --write \"./src/**/*.spec.{ts,tsx,js,jsx}\"",
"husky:install": "husky install",
"build:android:local": "eas build --platform android --local --profile preview"
},
"dependencies": {
"@native-html/iframe-plugin": "^2.6.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"class-variance-authority": "^0.7.0",
"expo": "^52.0.19",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.10",
"lucide-react-native": "^0.308.0",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"mobx-state-tree": "^5.4.0",
"nativewind": "^2.0.11",
"react": "18.3.1",
"react-native": "0.76.5",
"react-native-reanimated": "~3.16.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-native-svg": "15.8.0",
"react-native-webview": "13.12.5",
"wretch": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^12.5.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.3.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"prettier": "^3.1.1",
"tailwindcss": "3.3.2",
"typescript": "~5.3.3"
},
"jest": {
"preset": "jest-expo"
},
"private": true
}