forked from OpenBuilders/notcoin-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "ton-stable",
"description": "",
"version": "0.1.0",
"scripts": {
"build": "npx blueprint build",
"test": "jest",
"deploy": "npx blueprint run",
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'"
},
"devDependencies": {
"@ton/blueprint": "^0.15.0",
"@ton/core": "^0.54.0",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "0.16.0-tvmbeta.3",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^13.10.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.2.5",
"dotenv": "^16.0.0",
"jest": "^29.6.3",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"overrides": {
"@ton-community/func-js-bin": "0.4.5-tvmbeta.3",
"@ton-community/func-js": "0.6.3-tvmbeta.3",
"@ton-community/sandbox": "0.16.0-tvmbeta.3"
},
"prettier": {
"printWidth": 180
},
"mocha": {
"require": [
"chai",
"ts-node/register"
],
"timeout": 20000
},
"engines": {
"node": ">=16.0.0"
}
}