-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "./frontend/index.ts",
"scripts": {
"dev:backend": "tsx watch backend/src/index.ts",
"build": "tsc",
"start:backend": "node dist/index.js",
"dev:frontend": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@expo/webpack-config": "^19.0.1",
"@prisma/client": "^5.22.0",
"axios": "^1.7.7",
"expo": "~52.0.11",
"expo-status-bar": "~2.0.0",
"express": "^4.21.1",
"react": "18.3.1",
"react-dom": "^18.3.1",
"react-native": "0.76.3",
"react-native-web": "^0.19.13",
"react-router-dom": "^7.0.1",
"tsx": "^4.19.2",
"expo-router": "~4.0.9",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"expo-linking": "~7.0.3",
"expo-constants": "~17.0.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/express": "^5.0.0",
"@types/node": "^22.9.3",
"@types/react": "~18.3.12",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}