-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "crisislens-monorepo",
"private": true,
"packageManager": "pnpm@10.6.0",
"scripts": {
"dev": "pnpm --dir apps/web dev",
"build": "pnpm --dir apps/web build",
"lint": "pnpm --dir apps/web lint",
"typecheck": "pnpm --dir apps/web typecheck",
"test": "pnpm --dir apps/web test",
"test:unit": "pnpm --dir apps/web test:unit",
"test:e2e": "pnpm --dir apps/web test:e2e",
"test:e2e:headed": "pnpm --dir apps/web test:e2e:headed",
"test:e2e:ui": "pnpm --dir apps/web test:e2e:ui",
"test:e2e:api": "pnpm --dir apps/web test:e2e:api",
"playwright:install": "pnpm --dir apps/web playwright:install",
"test:all": "pnpm --dir apps/web test:all",
"generate:data": "pnpm --dir apps/web generate:data"
},
"dependencies": {
"lucide-react": "^0.575.0"
}
}