-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
{
"name": "rlay",
"version": "1.5.7",
"description": "Relay HTTP requests through a server to your dev machine. A self hosted alternative to ngrok",
"main": "src/server/dist/index.js",
"engines": {
"node": ">10.0.0"
},
"scripts": {
"clean": "rimraf dist/",
"rebuild": "npm run clean && npm run build",
"build": "tsc && node copyStatic.js",
"bns": "npm run build && npm run start",
"start": "node dist/server/src/index.js",
"start-client": "node dist/client/src/index.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.org/cfe84/rlay"
},
"devDependencies": {
"@types/command-line-usage": "^5.0.1",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/node": "^17.0.41",
"@types/uuid": "^8.3.0",
"@types/web": "^0.0.68",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"testdouble": "^3.16.1",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"command-line-usage": "^6.1.1",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"uuid": "^8.3.2",
"yaclip": "^1.2.1"
},
"keywords": [],
"author": "Charles Feval",
"license": "ISC",
"bin": {
"rlay": "./bin/rlay",
"rlay-server": "./bin/rlay-server"
}
}