forked from Vatix-Protocol/vatix-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 697 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "@vatix/workers",
"version": "1.0.0",
"description": "Workers application for Vatix protocol",
"type": "module",
"scripts": {
"finalization:dev": "tsx watch src/finalization/main.ts",
"finalization:start": "tsx src/finalization/main.ts",
"oracle:dev": "tsx watch src/oracle/main.ts",
"oracle:start": "tsx src/oracle/main.ts",
"submission:dev": "tsx watch src/oracle/main.ts",
"submission:start": "tsx src/oracle/main.ts",
"settlement:dev": "tsx watch src/settlement/consumer.ts",
"settlement:start": "tsx src/settlement/consumer.ts",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC"
}