-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
39
40
41
42
43
44
{
"name": "banc-prog-api",
"version": "1.0.0",
"description": "",
"main": "./dist/server.ts",
"scripts": {
"dev": "nodemon --watch src -e js,ts,json --exec \"ts-node src/server.ts\"",
"build": "tsup src/server.ts --format cjs --clean",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.9",
"@types/ping": "^0.4.4",
"@types/ssh2": "^1.15.1",
"@types/ws": "^8.5.10",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"net": "^1.0.2",
"ping": "^0.4.4",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"ioredis": "^5.4.1",
"ssh2": "^1.16.0",
"telnet-client": "^2.2.1",
"ws": "^8.17.0"
},
"optionalDependencies": {
"raspi": "^6.0.1",
"raspi-i2c": "^6.2.4"
}
}