-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "ton-cli",
"version": "0.0.1",
"description": "Command line tools for TON blockchain",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/evercoinx/toncli"
},
"author": "Serge Grigorenko <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=17",
"npm": ">=8"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write src",
"lint": "eslint src --ext ts",
"build": "tsc -p .",
"start": "npm run build && node ."
},
"dependencies": {
"bn.js": "5.2.0",
"dotenv": "14.3.2",
"joi": "17.6.0",
"tonweb": "0.0.30",
"tonweb-mnemonic": "1.0.0",
"winston": "3.5.1",
"yargs": "17.3.1"
},
"devDependencies": {
"@types/bn.js": "5.1.0",
"@types/node": "17.0.15",
"@types/yargs": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"husky": "7.0.4",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"typescript": "4.5.5"
}
}