-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
27 lines (27 loc) · 856 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
{
"name": "rln-interrep-cloudflare",
"version": "1.0.0",
"description": "CloudFlare Rate-Limiting like service proof-of-concept implemented using RLN and InterRep",
"main": "index.js",
"author": "Blagoj Dimovski",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"server",
"app_example",
"interrep_mock"
],
"scripts": {
"build": "yarn workspaces run build",
"server": "yarn workspace server start",
"client": "yarn workspace client start",
"singleClient": "yarn workspace client start",
"multiClient": "yarn workspace client multiClient",
"user1": "yarn workspace client user1",
"user2": "yarn workspace client user2",
"user3": "yarn workspace client user3",
"appExample": "yarn workspace app_example start",
"interrepMock": "yarn workspace interrep_mock start"
}
}