forked from ton-community/ton-api-v4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
{
"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",
"test": "jest"
},
"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",
"typescript": "^4.4.2"
},
"dependencies": {
"@fastify/cors": "^7.0.0",
"@fastify/websocket": "^5.0.0",
"@ton/core": "^0.56.2",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "^0.11.0",
"@ton/ton": "^13.11.1",
"axios": "^0.25.0",
"bn.js": "5.2.0",
"date-fns": "^2.30.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-lite-client": "^3.0.0"
},
"packageManager": "[email protected]"
}