-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 KB
/
package.json
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
45
46
{
"name": "api",
"version": "1.4.1",
"description": "Heorot API",
"type": "module",
"main": "./api/server.js",
"scripts": {
"start": "ts-node ./api/server.ts",
"dev": "nodemon",
"build": "tsc"
},
"author": "Josh Furlani",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"express": "4.18.2",
"got": "12.6.0",
"https": "1.0.0",
"jsonwebtoken": "9.0.0",
"mongoose": "7.0.3",
"node-fetch": "3.3.1",
"node-ssh": "13.0.1",
"socket.io": "4.6.1",
"ssh2": "1.11.0",
"ssh2shell": "2.0.8",
"ts-node": "10.9.1",
"xml2js": "0.4.23",
"zod": "3.21.4"
},
"devDependencies": {
"@swc/core": "^1.3.46",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/got": "^9.6.12",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/node-ssh": "^7.0.1",
"@types/ssh2": "^1.11.9",
"@types/xml2js": "^0.4.11",
"nodemon": "^2.0.22",
"typescript": "^5.0.3"
}
}