-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
{
"name": "sehcat-app",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "bun run expo start",
"android": "bun run expo start --android",
"ios": "bun run expo start --ios",
"web": "bun run expo start --web",
"build:web": "bun run expo export -p web && npx workbox-cli generateSW workbox-config.js",
"prebuild": "mkdir -p web-build/assets && cp -R assets/icons web-build/assets/ && cp public/manifest.json web-build/",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"serve": "serve dist"
},
"dependencies": {
"@expo/metro-runtime": "^3.2.3",
"@expo/vector-icons": "^14.0.3",
"@expo/webpack-config": "^19.0.1",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-navigation/native": "^6.1.7",
"expo": "^51.0.38",
"expo-constants": "^16.0.2",
"expo-linking": "^6.3.1",
"expo-router": "^3.5.23",
"expo-status-bar": "^1.12.1",
"expo-system-ui": "~3.0.4",
"expo-web-browser": "~13.0.3",
"nativewind": "next",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "^4.11.0",
"react-native-screens": "^3.34.0",
"react-native-web": "~0.19.10",
"workbox-precaching": "^7.1.0",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"ajv": "^8.12.0",
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}