forked from FinChippay/Finchippay-Solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.21 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
{
"private": true,
"workspaces": [
"sdk",
"frontend"
],
"scripts": {
"generate:sdk": "bash scripts/generate-sdk.sh",
"build:sdk": "npm run build --workspace=sdk",
"build": "npm run build --workspace=sdk --workspace=frontend",
"load-test": "node scripts/load-test.js",
"load-test:dashboard": "k6 run --out json=k6-results/dashboard-traffic.json tests/load/dashboard-traffic.js",
"load-test:payments": "k6 run --out json=k6-results/payment-burst.json tests/load/payment-burst.js",
"load-test:analytics": "k6 run --out json=k6-results/analytics-query.json tests/load/analytics-query.js",
"load-test:sustained": "k6 run --out json=k6-results/sustained-load.json tests/load/sustained-load.js",
"load-test:all": "bash tests/load/run-all.sh",
"lint": "npm run lint --workspace=frontend",
"type-check": "npm run type-check --workspace=sdk --workspace=frontend",
"test": "npm run test --workspace=frontend"
},
"devDependencies": {
"openapi-typescript": "^7.0.0"
},
"dependencies": {
"autocannon": "^8.0.0"
},
"keywords": [
"stellar",
"zero-knowledge",
"cryptography",
"blockchain"
],
"author": "Finchippay Solution Team",
"license": "MIT"
}