-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 980 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 980 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
27
28
29
30
31
32
33
34
35
36
{
"name": "senzor-agent",
"version": "1.0.0",
"description": "TypeScript Agent for VPS Monitoring",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "ts-node src/tests/monitor.test.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.0",
"node-pty": "^1.1.0",
"socket.io-client": "^4.8.3",
"systeminformation": "^5.21.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}