forked from ton-community/ton-api-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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": "ton-api-v4",
"version": "1.0.0",
"repository": "https://github.com/ton-foundation/ton-api-v4.git",
"author": "Whales Corp. <[email protected]>",
"license": "MIT",
"private": true,
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -fr dist && tsc --declaration",
"dev": "yarn build && node ./dist/index.js",
"docker": "./docker.sh"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/ws": "^8.5.3",
"buffer": "^6.0.3",
"expect": "^27.1.0",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@fastify/cors": "^7.0.0",
"@fastify/websocket": "^5.0.0",
"axios": "^0.25.0",
"bn.js": "5.2.0",
"dotenv": "^10.0.0",
"fastify": "^3.29.0",
"fp-ts": "^2.12.1",
"io-ts": "^2.2.16",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"teslabot": "^1.3.0",
"ton": "11.18.2",
"ton-contract-executor": "0.5.0",
"ton-crypto": "2.1.0",
"ton-lite-client": "^1.6.0"
},
"resolutions": {
"ton": "11.18.2"
},
"packageManager": "[email protected]"
}