-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 3.42 KB
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
57
58
59
60
61
62
{
"name": "dex",
"version": "1.0.0",
"description": "DEX",
"main": "index.js",
"scripts": {
"build": "npx locklift build --config locklift.config.ts",
"migration-prod": "locklift run --config locklift.config.js --network main --script scripts/migration-prod.js && locklift test --config locklift.config.js --network main --test test/prod",
"test": "sh test.sh",
"test:oracle-upgrade": "npx locklift test --config locklift.config.js --disable-build --network local --tests test/upgrade/5-oracle-upgrade-test.js",
"test:order": "npx locklift test --disable-build -n local --tests test/60-order.spec.ts",
"build:test:order": "npx locklift test -n local --tests test/60-order.spec.ts",
"test:ms": "npx locklift test --disable-build -n local --tests test/61-ms-order.ts",
"build:test:ms": "npx locklift test -n local --tests test/61-ms-order.ts",
"deploy:account": "npx locklift run --disable-build --script scripts/0-deploy-account.ts --config locklift.config.ts --network",
"deploy:dex": "npx locklift run --disable-build --script scripts/prod/deploy.ts --config locklift.config.ts --network",
"deploy:tokens": "npx locklift run --disable-build --script scripts/2-deploy-test-tokens.ts --config locklift.config.ts --network",
"deploy:pair": "npx locklift run --disable-build --script scripts/5-deploy-test-pair.ts --config locklift.config.ts --network",
"deploy:dex-account": "npx locklift run --disable-build --script scripts/4-deploy-test-dex-account.ts --config locklift.config.ts --network",
"export:dex-accounts": "npx locklift run --disable-build --script scripts/prod/export-dex-accounts.ts --config locklift.config.ts --network",
"export:dex-pairs": "npx locklift run --disable-build --script scripts/prod/export-dex-pairs.ts --config locklift.config.ts --network",
"upgrade:dex-accounts": "npx locklift run --disable-build --script scripts/prod/force-upgrade-dex-accounts-batch.ts --config locklift.config.ts --network",
"upgrade:dex-pairs": "npx locklift run --disable-build --script scripts/prod/upgrade-dex-pairs-batch.ts --config locklift.config.ts --network",
"active:dex-pairs": "npx locklift run --disable-build --script scripts/prod/set-pairs-active-batch.ts --config locklift.config.ts --network"
},
"author": "aleksandr-hramcov <aleksandr.hramcov@gmail.com>",
"license": "AGPL-3.0",
"devDependencies": {
"@broxus/contracts": "1.1.1",
"@broxus/wever": "git://github.com/broxus/ever-wever#merge-1",
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/prompts": "2.0.14",
"@typescript-eslint/eslint-plugin": "6.1.0",
"bignumber.js": "9.1.1",
"chai": "4.3.7",
"chalk": "4.1.2",
"commander": "9.4.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"everscale-standalone-client": "2.1.21",
"locklift": "2.8.3",
"@broxus/locklift-network": "1.0.0",
"@broxus/locklift-verifier": "1.0.5",
"@broxus/locklift-deploy": "1.1.1",
"dotenv": "16.0.3",
"mocha": "10.2.0",
"mocha-logger-ts": "1.0.3",
"prettier": "2.8.8",
"prompts": "2.4.2",
"tip3": "git://github.com/broxus/tip3#480c1b4481d1dddb028b408b20ba8c19abd1a4a4",
"ever-wever": "git://github.com/broxus/ever-wever",
"ts-node": "10.8.1",
"ts-mocha": "10.0.0",
"typescript": "4.9.5"
},
"overrides": {
"nekoton-wasm": "npm:nekoton-wasm-locklift@1.20.2"
}
}