-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.22 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
55
56
57
58
59
60
61
{
"private": true,
"workspaces": [
"sdk",
"frontend"
],
"scripts": {
"generate:sdk": "bash scripts/generate-sdk.sh",
"check:sdk": "bash scripts/check-sdk.sh",
"build:sdk": "npm run build --workspace=sdk",
"build": "npm run build --workspace=sdk --workspace=frontend",
"load-test": "node scripts/load-test.js",
"benchmarks:compare": "node scripts/compare-benchmarks.js benchmarks/base.json benchmarks/current.json benchmarks/summary.md",
"benchmarks:smoke": "npm --prefix backend test -- --runInBand --testPathPatterns=perf && (npm --prefix frontend exec -- jest --runInBand --testPathPatterns=perf || node -e \"console.log('Frontend benchmark smoke skipped; jest is unavailable in this environment.')\")",
"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",
"docs:errors": "node scripts/generate-error-codes-doc.js",
"docs:errors:check": "node scripts/generate-error-codes-doc.js --check",
"lint": "npm run lint --workspace=frontend",
"type-check": "npm run type-check --workspace=sdk --workspace=frontend",
"test": "npm run test --workspace=frontend",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix --max-warnings 0"
],
"*.{json,md,yaml,yml}": [
"npx prettier --write"
],
"*.rs": [
"rustfmt --edition 2021"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"openapi-typescript": "^7.0.0"
},
"dependencies": {
"autocannon": "^8.0.0"
},
"keywords": [
"stellar",
"zero-knowledge",
"cryptography",
"blockchain"
],
"author": "Finchippay Solution Team",
"license": "MIT",
"overrides": {
"uuid": "14.0.1",
"image-size": "2.0.2",
"postcss": "8.5.26",
"sharp": "0.35.3"
}
}