forked from 1IxI1/single-nominator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "single-nominator",
"description": "",
"version": "0.0.0",
"license": "MIT",
"author": "",
"scripts": {
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'",
"e2e": "mocha --timeout 120000 --exit test/e2e.ts",
"test_legacy": "mocha --timeout 45000 --exit test/*.test.ts",
"test": "jest sandbox_tests",
"deploy": "ts-node deploy/deploy.ts",
"deploy:test": "ts-node deploy/deploy.ts",
"init-deploy-wallet": "ts-node deploy/init-deploy-wallet.ts"
},
"devDependencies": {
"@swc/core": "^1.2.177",
"@ton/blueprint": "^0.21.0",
"@ton/core": "^0.56.3",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.4.2",
"@types/chai": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/mocha": "^9.0.0",
"@types/semver": "^7.3.9",
"axios-request-throttle": "^1.0.0",
"chai": "^4.3.4",
"dotenv": "^16.0.0",
"fast-glob": "^3.2.11",
"jest": "^29.7.0",
"mocha": "^9.1.3",
"prettier": "^2.6.2",
"ton-contract-executor": "^0.8.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"prettier": {
"printWidth": 180
},
"mocha": {
"require": [
"chai",
"ts-node/register"
],
"timeout": 20000
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.9.0",
"@types/bn.js": "^5.1.5",
"axios": "^1.6.7",
"chai-bn": "^0.3.1",
"prando": "^6.0.1",
"semver": "^7.3.7",
"ton": "^11.0.1"
}
}