-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "Focus_project",
"private": true,
"scripts": {
"build": "turbo run build",
"dev:all": "turbo run dev",
"dev:api": "turbo run dev --filter=api",
"dev:admin": "turbo run dev --filter=admin",
"dev:mobile": "turbo run dev --filter=mobile",
"prod:api": "turbo run start:prod --filter=api",
"prod:admin": "turbo run start --filter=admin",
"prod:mobile": "turbo run start --filter=mobile",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"prettier": "^3.7.4",
"turbo": "^2.8.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"dependencies": {
"expo-dev-client": "~6.0.20"
}
}