-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 892 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 892 Bytes
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
{
"name": "igrp-process-manager-frontend-monorepo",
"private": true,
"version": "1.0.0",
"scripts": {
"build:client": "pnpm --filter @igrp/platform-process-management-client-ts build",
"build:types": "pnpm --filter @igrp/platform-process-management-types build",
"build:all": " pnpm build:types && pnpm build:client",
"build": "pnpm build:all",
"deploy:types": "pnpm --filter @igrp/platform-process-management-types release",
"deploy:client": "pnpm --filter @igrp/platform-process-management-client-ts release",
"release": "pnpm deploy:types && pnpm deploy:client",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"vitest": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0",
"happy-dom": "^12.10.3",
"typescript": "^5.2.2"
}
}