-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "dy.finance",
"version": "0.1.0",
"author": {
"name": "August Felix",
"email": "[email protected]"
},
"repository": "https://github.com/Koku-Stacks/contracts",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"test": "clarinet test",
"integration-test": "cd integration_tests && ./run_tests",
"deploy": "ts-node scripts/deploy_contract.ts",
"deploy-all": "ts-node scripts/deploy_all",
"btc-price": "ts-node scripts/btc_price.ts",
"gas-cost": "ts-node scripts/estimate_costs.ts",
"bpm-chunk-size": "ts-node scripts/batch-position-maintenance_change_chunk_size",
"generate-key": "ts-node scripts/keys_generation.ts"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.5.2"
},
"dependencies": {
"@blockstack/clarity": "^0.3.15",
"@stacks/cli": "4.0.0",
"@stacks/keychain": "4.0.0",
"@stacks/network": "4.0.0",
"@stacks/transactions": "4.0.0",
"@stacks/wallet-sdk": "4.0.0",
"axios": "^0.26.0",
"cron": "^1.8.2",
"dy-finance.lib": ">=0.1.3",
"yargs": "^13.3.2"
}
}