forked from ton-blockchain/token-bridge-func
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "token-bridge-func",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"test": "npx ava ./tests",
"test:bridge": "npx ava ./tests/main.test.ts",
"test:minter": "npx ava ./tests/minter.test.ts",
"start": "ts-node ./src/index.ts",
"deploy:jetton-bridge-default-config": "ts-node ./src/deploy-jetton-bridge-default-config.ts",
"convert-address": "ts-node ./src/convert-address.ts",
"burn": "ts-node ./src/call-burn.ts",
"calculate-address": "ts-node ./src/calculate-address.ts",
"set-bridge-address": "ts-node ./src/set-bridge-address.ts",
"getter": "ts-node ./src/get-wallet-data.ts"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"bignumber.js": "^9.1.0",
"dotenv": "^16.0.1",
"tonweb": "^0.0.54"
},
"devDependencies": {
"@types/node": "^18.7.11",
"app-root-path": "^3.1.0",
"ava": "^4.3.3",
"shell-exec": "^1.1.2",
"ton": "^12.1.1",
"ton-compiler": "^1.0.0",
"ton-contract-executor": "^0.5.2",
"tonc": "^2.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
],
"concurrency": 8,
"verbose": true,
"timeout": "1m"
}
}