-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 KB
/
package.json
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
{
"name": "@vechain.energy/vet-rpc",
"version": "1.7.0",
"packageManager": "yarn@3.6.1",
"bin": "dist/rpc.js",
"main": "dist/rpc.js",
"homepage": "https://github.com/vechain-energy/rpc-proxy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vechain-energy/rpc-proxy.git"
},
"bugs": {
"url": "https://github.com/vechain-energy/rpc-proxy/issues"
},
"dependencies": {
"@vechain/sdk-network": "^1.0.0-beta.24",
"chalk": "4",
"commander": "11",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.18.3",
"figlet": "^1.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/connect-timeout": "^0.0.39",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.8",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.24",
"nodemon": "^3.1.0",
"pm2": "^5.3.1",
"thor-devkit": "^2.0.9",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"start": "node dist/rpc.js",
"daemon:up": "pm2 start dist/rpc.js --max-memory-restart 512M",
"daemon:down": "pm2 stop dist/rpc.js",
"watch": "nodemon -e ts --exec 'npm run build && npm run start'",
"prepublish": "tsc",
"postinstall": "./patches.sh"
}
}