-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 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": "sensorserver",
"version": "1.0.0",
"description": "Temp/Humidity Monitoring System",
"scripts": {
"start": "node dist/index.js",
"build": "rimraf dist && tsc",
"sentry:dist": "npx npx sentry-cli sourcemaps inject ./dist && sentry-cli sourcemaps upload --release=\"$(git rev-parse HEAD)\" ./dist",
"lint:check": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix"
},
"author": "zhiyan114",
"license": "GNUv3",
"devDependencies": {
"@sentry/cli": "^2.23.0",
"@types/node": "^20.10.4",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"eslint": "^8.56.0",
"prisma": "^5.14.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@opentelemetry/exporter-trace-otlp-http": "^0.52.0",
"@opentelemetry/instrumentation": "^0.52.0",
"@opentelemetry/resources": "^1.24.1",
"@opentelemetry/sdk-trace-base": "^1.24.1",
"@opentelemetry/sdk-trace-node": "^1.24.1",
"@opentelemetry/semantic-conventions": "^1.24.1",
"@prisma/client": "^5.14.0",
"@prisma/instrumentation": "^5.14.0",
"@sentry/node": "^8.4.0",
"mqtt": "^5.3.3",
"node-cron": "^3.0.3",
"protobufjs": "^7.2.5"
}
}