-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (25 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (25 loc) · 828 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": "web-event-clock",
"version": "1.0.0",
"private": true,
"imports": {
"#/*": "./dist/*.js"
},
"scripts": {
"dev": "pnpm --parallel --filter \"*\" dev",
"dev:frontend": "pnpm --filter frontend dev",
"dev:backend": "pnpm --filter backend dev",
"dev:time-publisher": "pnpm --filter time-publisher dev",
"build": "pnpm --parallel --filter \"*\" build",
"build:frontend": "pnpm --filter frontend build",
"build:backend": "pnpm --filter backend build",
"lint": "pnpm --parallel --filter \"*\" lint",
"test": "pnpm --parallel --filter \"*\" test",
"test:frontend": "pnpm --filter frontend test",
"test:backend": "pnpm --filter backend test",
"test:shared": "pnpm --filter @web-event-clock/shared test"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}