-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "ton-func-contracts",
"version": "0.0.1",
"license": "MIT",
"keywords": [
"FunC",
"TON",
"The Open Network",
"Telegram",
"Typescript"
],
"description": "A set of low and high value TON (The Open Network) FunC smart contracts and test suites.",
"scripts": {
"start": "blueprint run",
"build": "blueprint build",
"test": "jest --verbose",
"prettier:format": "prettier --write \"{src,tests,wrappers}/**/*.ts\"",
"prettier:check": "prettier --check \"{src,tests,wrappers}/**/*.ts\"",
"lint": "eslint \"{src,tests,wrappers}/**/*.ts\" --fix"
},
"devDependencies": {
"@ton/blueprint": "^0.21.0",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "^0.19.0",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^13.11.1",
"@ton/core": "^0.56.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}