-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.09 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
{
"name": "sentinel-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "pnpm --filter @sentinel/client start",
"client:start": "pnpm --filter @sentinel/client start --clear",
"client:android": "pnpm --filter @sentinel/client android",
"client:ios": "pnpm --filter @sentinel/client ios",
"client:web": "pnpm --filter @sentinel/client web",
"backend:start": "pnpm --filter @sentinel/backend start:dev",
"backend:build": "pnpm --filter @sentinel/backend build",
"backend:test": "pnpm --filter @sentinel/backend test",
"lint": "pnpm --filter @sentinel/client lint && pnpm --filter @sentinel/backend lint",
"lint:fix": "pnpm --filter @sentinel/client lint:fix && pnpm --filter @sentinel/backend lint:fix",
"test": "pnpm --filter @sentinel/backend test",
"prisma:generate": "pnpm --filter @sentinel/backend prisma:generate",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6"
}
}