-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.13 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "notification-system",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:dev": "pnpm client codegen && turbo run build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev": "docker-compose up --build",
"test": "turbo run test",
"consumer": "pnpm --filter @notification-system/consumer",
"logic-system": "pnpm --filter @notification-system/logic-system",
"subscription-server": "pnpm --filter @notification-system/subscription-server",
"dispatcher": "pnpm --filter @notification-system/dispatcher",
"integrated-tests": "pnpm --filter @notification-system/integrated-tests",
"client": "pnpm --filter @notification-system/anticapture-client",
"flow-editor": "pnpm --filter @notification-system/flow-editor"
},
"devDependencies": {
"@types/pg": "^8.15.5",
"pg": "^8.16.3",
"pino-pretty": "^13.1.3",
"ts-node": "^10.9.2",
"turbo": "^2.5.5",
"typescript": "5.8.2"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3"
]
}
}