-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 950 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 950 Bytes
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
{
"name": "flowmate-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "npm run dev --workspace=@flowmate/web",
"dev:mobile": "npm run start --workspace=@flowmate/mobile",
"build:web": "npm run build --workspace=@flowmate/web",
"dev": "npm run dev:web",
"build": "npm run build:web",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/.next apps/*/.expo",
"android": "expo run:android",
"ios": "expo run:ios"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@expo/ngrok": "^4.1.3",
"typescript": "^5"
},
"dependencies": {
"expo": "~54.0.30",
"openai": "^6.27.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"vercel": "^50.39.0"
}
}