forked from EmelyanenkoK/basecoin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.27 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-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.56.0",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "0.16.0-tvmbeta.3",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^14.0.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.14.13",
"dotenv": "^16.0.0",
"jest": "^29.6.3",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"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"
},
"dependencies": {
"@types/express": "^4.17.21",
"express": "^4.19.2"
}
}