forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.89 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
{
"name": "tikka-oracle",
"version": "0.1.0",
"description": "Tikka randomness oracle — VRF/PRNG and receive_randomness submitter",
"private": true,
"scripts": {
"build": "nest build",
"decrypt-env": "bash scripts/decrypt-env.sh",
"start": "npm run decrypt-env && nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,test}/**/*.ts\"",
"test": "jest",
"test:e2e": "jest --config jest.config.js --testMatch='**/test/e2e-*.spec.ts'",
"test:e2e:mocked": "jest --config jest.config.js --testMatch='**/test/e2e-oracle-flow.spec.ts'",
"test:e2e:standalone": "jest --config jest.config.js --testMatch='**/test/e2e-standalone-node.spec.ts' --runInBand",
"test:e2e:full": "bash scripts/run-e2e-tests.sh",
"oracle:rescue": "ts-node src/rescue/rescue.cli.ts"
},
"dependencies": {
"@nestjs/bull": "^11.0.4",
"@nestjs/common": "^10.4.0",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^10.4.0",
"@nestjs/platform-express": "^10.4.22",
"@noble/curves": "^2.0.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-prometheus": "^0.218.0",
"@opentelemetry/sdk-metrics": "^2.7.1",
"@stellar/stellar-sdk": "^14.5.0",
"@supabase/supabase-js": "^2.49.4",
"bull": "^4.16.5",
"nest-winston": "^1.10.2",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.0",
"stellar-sdk": "^13.3.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.0",
"@nestjs/testing": "^10.4.22",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"eslint": "^10.0.2",
"fast-check": "^4.6.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
},
"optionalDependencies": {
"@aws-sdk/client-kms": "^3.0.0",
"@google-cloud/kms": "^4.0.0"
}
}