-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
73 lines (73 loc) · 3.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "synthetify-protocol",
"version": "1.0.0",
"description": "",
"scripts": {
"test:full": "npm run test:multicollateral && npm run test:exchange && npm run test:interest-debt && npm run test:isolated-burn && npm run test:liquidation && npm run test:admin && npm run test:admin-withdraw && npm run test:staking && npm run test:staking-multiuser && npm run test:multi && npm run test:settlement && npm run test:swapline && npm run test:swapline-decimal && npm run test:vaults && npm run test:admin-vaults && npm run test:vaultsliquidation && npm run test:vaults-interest",
"test:exchange": "anchor test --skip-build tests/exchange.spec.ts",
"test:interest-debt": "anchor test --skip-build tests/interest-debt.spec.ts",
"test:isolated-burn": " anchor test --skip-build tests/isolated-burn.spec.ts",
"test:liquidation": "anchor test --skip-build tests/liquidation.spec.ts",
"test:liquidation-small": "anchor test --skip-build tests/liquidation-small.spec.ts",
"test:admin": "anchor test --skip-build tests/exchange-admin.spec.ts",
"test:admin-withdraw": "anchor test --skip-build tests/admin-withdraw.spec.ts",
"test:staking": "anchor test --skip-build tests/staking.spec.ts",
"test:staking-multiuser": "anchor test --skip-build tests/staking-multiuser.spec.ts",
"test:multi": "anchor test --skip-build tests/staking-multiuser.spec.ts",
"test:multicollateral": "anchor test --skip-build tests/multicollateral.spec.ts",
"test:settlement": "anchor test --skip-build tests/settlement.spec.ts",
"test:swap": "anchor test --skip-build tests/swap-without-account.spec.ts",
"test:swapline": "anchor test --skip-build tests/swap-line.spec.ts",
"test:swapline-decimal": "anchor test --skip-build tests/swapline-decimal.spec.ts",
"test:vaults": "anchor test --skip-build tests/vaults.spec.ts",
"test:vaultsliquidation": "anchor test --skip-build tests/vaults-liquidation.spec.ts",
"test:vaultsliquidation-small": "anchor test --skip-build tests/vaults-liquidation-small.spec.ts",
"test:vaults-interest": "anchor test --skip-build tests/vaults-interest-debt.spec.ts",
"test:vaults-external-collateral": "anchor test --skip-build tests/vault-external-collateral.spec.ts",
"test:admin-vaults": "anchor test --skip-build tests/admin-vaults.spec.ts",
"build": "cd sdk && npm run build",
"program:mainnet": "anchor build -- --features \"mainnet\"",
"program:testnet": "anchor build -- --features \"testnet\"",
"program:devnet": "anchor build -- --features \"devnet\"",
"program:localnet": "anchor build -- --features \"localnet\""
},
"author": "Norbert Bodziony",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.2.0",
"@project-serum/anchor": "^0.18.2",
"@project-serum/serum": "^0.13.33",
"@pythnetwork/client": "^2.2.0",
"@solana/spl-governance": "^0.0.19",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"binance-api-node": "^0.10.30",
"bip32": "^2.0.6",
"bs58": "^4.0.1",
"dotenv": "^10.0.0",
"ed25519-hd-key": "^1.2.0",
"mocha": "^8.3.2",
"react-router-dom": "^5.2.0",
"ts-mocha": "^8.0.0"
},
"devDependencies": {
"@synthetify/sdk": "./sdk",
"@types/chai": "^4.2.15",
"@types/expect": "^24.3.0",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-prettier-standard": "^4.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"prettier": "^2.2.1",
"prettier-config-standard": "^4.0.0",
"typescript": "^4.2.3"
}
}