-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.04 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
{
"name": "truthlayer",
"private": true,
"version": "0.0.1",
"description": "TruthLayer monorepo: Chrome extension + API + shared types.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace packages/shared && npm run build --workspaces --if-present --include-workspace-root=false",
"dev:extension": "npm run dev --workspace apps/extension",
"dev:api": "npm run dev --workspace apps/api",
"dev:claim-web": "npm run dev --workspace apps/claim-web",
"dev:all": "concurrently -k -n api,ext,claim -c blue,magenta,cyan \"npm run dev:api\" \"npm run dev:extension\" \"npm run dev:claim-web\"",
"smoke": "node apps/api/test-e2e-session.mjs && node apps/api/test-e2e-claim.mjs",
"typecheck": "tsc -p apps/api/tsconfig.json --noEmit && tsc -p apps/extension/tsconfig.json --noEmit && tsc -p apps/claim-web/tsconfig.json --noEmit && tsc -p packages/shared/tsconfig.json --noEmit"
},
"devDependencies": {
"concurrently": "^9.0.1"
},
"engines": {
"node": ">=20"
}
}