-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 993 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 993 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
37
38
39
40
41
{
"name": "status-client",
"version": "1.0.0",
"description": "System monitoring client",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"monitoring",
"system",
"client"
],
"author": "crystelf",
"license": "MIT",
"dependencies": {
"@types/node": "^24.10.2",
"@types/uuid": "^11.0.0",
"axios": "^1.13.2",
"systeminformation": "^5.27.12",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.4.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6"
}
}