-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.54 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
{
"name": "soon",
"scripts": {
"build:android": "npx eas-cli build -p android --profile preview --local",
"build:ios": "npx eas-cli build -p ios --profile preview --local",
"build:web": "npx expo export --platform web -c --output-dir web-build",
"dev": "npm run start",
"format": "npx prettier src --write",
"lint": "eslint src/**/*.tsx src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"offline": "expo start --offline",
"publish:expo": "npx eas-cli update",
"publish:web": "firebase deploy --only hosting",
"serve:app": "expo start --dev-client",
"serve:web": "npx serve web-build --single",
"setup": "npm ci --silent",
"start": "expo start --go",
"test": "jest",
"upgrade": "expo upgrade",
"web": "expo start --web --no-dev --host localhost --port 3000"
},
"overrides": {
"semver": ">=7.5.4"
},
"dependencies": {
"@react-native-community/datetimepicker": "^7.6.3",
"@react-navigation/native": "^6.1.9",
"ahooks": "^3.7.10",
"axios": "^1.6.8",
"expo": "^50.0.4",
"expo-dev-client": "~3.3.7",
"expo-font": "~11.10.2",
"expo-linking": "~6.2.2",
"expo-router": "~3.4.6",
"expo-status-bar": "~1.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.2",
"react-native-animatable": "^1.4.0",
"react-native-date-picker": "^4.4.2",
"react-native-gesture-handler": "~2.14.0",
"react-native-reanimated": "~3.6.2",
"react-native-root-toast": "^3.5.1",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "14.1.0",
"react-native-web": "~0.19.10",
"styled-components": "^5.3.11",
"expo-secure-store": "~12.8.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.11",
"@types/react": "~18.2.46",
"@types/react-test-renderer": "^18.0.7",
"@types/styled-components": "^5.1.34",
"@types/styled-components-react-native": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-expo": "~50.0.1",
"prettier": "^3.1.1",
"react-native-svg-transformer": "^1.3.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.3.3"
}
}