-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 901 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
{
"name": "onion_net_ts",
"version": "1.0.0",
"description": "Simple Onion network in TypeScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "npm run tsc",
"directory": "node build/directoryAuthority.js",
"entry": "node build/relay --type=entry",
"middle": "node build/relay --type=middle",
"exit": "node build/relay --type=exit",
"circuit": "npm-run-all --parallel entry middle exit",
"network": "npm-run-all --parallel directory circuit",
"client": "node build/client.js"
},
"author": "Maximiliano Dante IV",
"license": "ISC",
"dependencies": {
"@types/aes-js": "^3.1.1",
"@types/express": "^4.17.6",
"@types/yargs": "^15.0.4",
"aes-js": "^3.1.2",
"axios": "^0.21.1",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"yargs": "^15.3.1"
}
}