-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (55 loc) · 1.2 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
{
"name": "jetton-distributor",
"version": "0.0.1",
"author": {
"name": "Artem Martrtiukhin",
"email": "[email protected]"
},
"scripts": {
"start": "blueprint run",
"build": "blueprint build",
"test": "jest --verbose",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@ton/blueprint": "^0.19.0",
"@ton/core": "~0",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "^0.17.0",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^13.11.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"typescript-eslint": "^7.8.0"
},
"lint-staged": {
"wrappers/SafeFactory/*.ts": [
"eslint --fix",
"prettier --write"
],
"wrappers/Safe/*.ts": [
"eslint --fix",
"prettier --write"
],
"wrappers/Jetton/*.ts": [
"eslint --fix",
"prettier --write"
],
"tests/**.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"lint-staged": "^15.2.2"
}
}