forked from molenzwiebel/Mimic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 932 Bytes
/
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
{
"name": "rift",
"version": "2.0.0",
"description": "Server-side Mimic component responsible for securely tunneling WebSocket connections.",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/molenzwiebel/mimic",
"type": "git"
},
"scripts": {
"start": "tsc -p . && node ./dist/index.js",
"watch": "tsc -p . -w",
"bundle": "tsc -p ."
},
"author": "Thijs Molendijk (molenzwiebel)",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/jsonwebtoken": "^7.2.8",
"@types/node": "^7.0.29",
"@types/uuid": "^3.4.4",
"@types/ws": "^6.0.1",
"typescript": "^3.1.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"sqlite": "^3.0.0",
"uuid": "^3.3.2",
"ws": "^6.1.0"
}
}