-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "sensorwatch",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"type": "module",
"devDependencies": {
"@types/node": "~24.2.1",
"@types/ws": "~8.18.0",
"@typescript-eslint/eslint-plugin": "~8.39.1",
"@typescript-eslint/parser": "~8.39.1",
"eslint": "~9.33.0",
"globals": "~16.3.0",
"pino-pretty": "^13.1.1",
"prettier": "~3.6.2",
"tsx": "~4.20.3",
"typescript": "~5.9.2"
},
"scripts": {
"fmt": "prettier \"**/*.{ts,tsx}\" --write",
"vet.all": "npm run vet -ws --if-present",
"build.all": "npm run build -ws --if-present",
"build.shared": "npm run build -w @sensorwatch/shared",
"watch.shared": "npm run watch -w @sensorwatch/shared",
"test.all": "npm run test -ws --if-present",
"test.reader": "npm run test -w @sensorwatch/reader",
"test.processor": "npm run test -w @sensorwatch/processor",
"test.alerter": "npm run test -w @sensorwatch/alerter",
"test.api": "npm run test -w @sensorwatch/api",
"test.e2e": "node scripts/e2e.launcher.js"
}
}