-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.33 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": "locklift-sample",
"version": "1.0.0-alpha",
"description": "Sample use locklift with everdev",
"repository": {
"type": "git",
"url": "git+https://github.com/EverscaleGuild/locklift-sample.git"
},
"keywords": [
"tvm",
"solidity",
"locklift",
"everscale"
],
"author": "EverscaleGuild",
"license": "MIT",
"bugs": {
"url": "https://github.com/EverscaleGuild/locklift-sample/issues"
},
"homepage": "https://github.com/EverscaleGuild/locklift-sample#readme",
"scripts": {
"nvm": "echo $npm_package_engines_node | cut -d'=' -f2",
"postinstall": "yarn everdev-setup",
"local-node-docker-reset": "everdev se reset",
"local-node-metal-reset": "evernode-se restart",
"everdev-setup": "everdev sol set --compiler 0.57.3 --linker 0.14.39",
"contract-build": "locklift build --config locklift.config.js",
"contract-deploy-local": "locklift run --config locklift.config.js --network local --script scripts/1-deploy-sample.js",
"contract-test": "locklift test --config locklift.config.js --network local",
"test": "yarn local-node-metal-reset && yarn contract-test"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@everscale-actions/evernode-se": "^0.31.0",
"chai": "^4.3.6",
"everdev": "^1.2.1",
"locklift": "EverscaleGuild/locklift"
}
}