forked from ubccr/heorot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "api",
"version": "1.4.1",
"description": "Heorot API",
"main": "server.js",
"scripts": {
"start": "node ./dist/server.js",
"dev": "ts-node-dev --respawn ./api/server.ts",
"build": "tsc"
},
"author": "Josh Furlani",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"got": "^11.8.3",
"https": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.2.4",
"node-fetch": "^2.6.7",
"node-ssh": "^13.0.0",
"socket.io": "^4.4.1",
"ssh2": "^1.6.0",
"ssh2shell": "^2.0.6",
"ts-node": "^10.9.1",
"xml2js": "^0.4.23",
"zod": "^3.21.4"
},
"devDependencies": {
"@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.0",
"@types/node-fetch": "^2.6.2",
"@types/node-ssh": "^7.0.1",
"@types/ssh2": "^1.11.7",
"@types/xml2js": "^0.4.11",
"nodemon": "^2.0.19",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}