forked from Skydev0h/w5p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "WalletV5",
"version": "0.0.1",
"scripts": {
"start": "blueprint run",
"build": "blueprint build",
"build:v5": "blueprint build wallet_v5",
"deploy-library": "npx blueprint run deployLibrary",
"deploy-wallet": "blueprint run deployWalletV5",
"deploy-wallet-no-lib": "blueprint run deployWalletV5WithoutLibrary",
"print-wallet-code": "ts-node ./scripts/printWalletCode.ts",
"test": "jest",
"scalpel": "bash ./scripts/scalpel.sh",
"pack-wasm": "ts-node ./scripts/pack-wasm.ts",
"postinstall": "patch-package"
},
"devDependencies": {
"@ton-community/blueprint": "^0.12.0",
"@ton-community/func-js-bin": "0.4.4",
"@ton-community/sandbox": "^0.11.0",
"@ton-community/test-utils": "^0.3.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"ton": "~13.6.0",
"ton-core": "^0.51.0",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"patch-package": "^8.0.0"
}
}