-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "test",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"compile": "ts-node ./scripts/compile.ts",
"test": "yarn compile && yarn jest",
"deploy": "TESTNET=true yarn compile && ts-node ./scripts/deploy.ts",
"deploy:mainnet": "yarn compile && ts-node ./scripts/deploy.ts",
"onchaintest": "TESTNET=true ts-node ./scripts/onchaintest.ts",
"onchaintest:mainnet": "ts-node ./scripts/onchaintest.ts"
},
"devDependencies": {
"@swc/core": "^1.3.41",
"@ton-community/func-js": "^0.6.0",
"@ton/core": "^0.48.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^14.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/qs": "^6.9.15",
"jest": "^29.7.0",
"qrcode-terminal": "^0.12.0",
"qs": "^6.13.0",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"dotenv": "^16.4.5"
}
}