-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 837 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 837 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
37
{
"name": "project-map",
"private": true,
"scripts": {
"start": "turbo run start --parallel --filter=web --filter=server",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"pnpm": {
"overrides": {
"glob": "^10.5.0",
"node-forge": "^1.3.2",
"tar": "^7.5.2",
"body-parser": "^2.2.1"
}
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"version": "1.0.0",
"dependencies": {
"expo": "~54.0.9",
"react": "19.1.0",
"react-native": "0.81.4"
}
}