-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "tip3-token",
"license": "Apache-2.0",
"author": {
"name": "sam",
"email": "samsamei1992@gmail.com",
"url": ""
},
"keywords": [
""
],
"devDependencies": {
"@types/node": "^18.16.0",
"prettier": "^2.8.8",
"typescript": "^4.7.4",
"tip3": "git://github.com/broxus/tip3#v5",
"@types/prompts": "^2.4.1",
"ora": "^4.0.0",
"prompts": "^2.4.2",
"bignumber.js": "^9.1.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"everscale-standalone-client": "^2.1.18",
"locklift": "^2.5.2",
"ts-mocha": "^10.0.0"
},
"scripts": {
"build": "npx locklift build",
"run:local-node": "docker run --rm -d --name local-node -e USER_AGREEMENT=yes -p 80:80 tonlabs/local-node",
"stop:local-node": "docker stop local-node",
"test:local": "npx locklift test --network local",
"test:testnet": "npx locklift test --network test",
"deploy:testnet": "npx locklift run --network test --script scripts/00-deploy.ts",
"mint:testnet": "npx locklift run --network test --script scripts/01-mint.ts",
"burn:testnet": "npx locklift run --network test --script scripts/02-burn.ts"
}
}