-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.16 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
62
63
64
65
66
67
68
{
"name": "rosetta-server",
"version": "1.0.0",
"description": "Rosetta implementation of VechainThor",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && tsc -p ./",
"docker:build": "docker build --pull --rm -f Dockerfile -t rosetta:latest .",
"serve": "rm -rf ./dist && tsc -p ./ && node ./dist/app/index.js",
"start:custom": "NETWORK=custom MODE=online docker compose up --build",
"start:main": "NETWORK=main MODE=online docker compose up --build",
"start:test": "NETWORK=test MODE=online docker compose up --build",
"stop": "docker compose down",
"test:e2e:custom": "TEST_NETWORK=custom jest",
"test:e2e:custom:watch": "TEST_NETWORK=custom jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/rosetta.git"
},
"author": "vechain.org",
"license": "ISC",
"bugs": {
"url": "https://github.com/vechain/rosetta/issues"
},
"homepage": "https://github.com/vechain/rosetta#readme",
"dependencies": {
"@vechain/connex-driver": "^2.3.2",
"@vechain/connex-framework": "^2.3.2",
"@vechain/connex-types": "^2.2.1",
"axios": "^1.15.0",
"ethers": "^6.16.0",
"group-array": "^1.0.0",
"i": "^0.3.7",
"joi": "^18.1.1",
"koa": "^3.1.2",
"koa-bodyparser": "^4.4.1",
"koa-router": "^14.0.0",
"koa-swagger-decorator": "^1.8.7",
"log4js": "^6.9.1",
"npm": "^11.12.1",
"thor-devkit": "^2.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/elliptic": "^6.4.18",
"@types/jest": "^30.0.0",
"@types/joi": "^17.2.3",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-router": "^7.4.9",
"@types/log4js": "^2.3.5",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.15.1",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}