-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"name": "askme",
"version": "1.0.0",
"private": true,
"description": "AskMe — AI-powered Linktree + Smart Chat",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"mobile": "npm --workspace apps/mobile run start",
"mobile:ios": "npm --workspace apps/mobile run ios",
"mobile:android": "npm --workspace apps/mobile run android",
"backend": "npm --workspace apps/backend run dev",
"backend:build": "npm --workspace apps/backend run build",
"backend:start": "npm --workspace apps/backend run start",
"web": "npm --workspace apps/web run dev",
"web:build": "npm --workspace apps/web run build",
"web:start": "npm --workspace apps/web run start",
"db:migrate": "npm --workspace apps/backend run db:migrate",
"db:generate": "npm --workspace apps/backend run db:generate",
"lint": "npm run -ws lint --if-present",
"typecheck": "npm run -ws typecheck --if-present"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"react-native": "0.81.5"
},
"optionalDependencies": {
"@esbuild/linux-x64": "*"
}
}