forked from StrawberryFlavor/FarmingTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (50 loc) · 1.59 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
{
"name": "lsd-farming",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@acala-network/api": "^6.0.0",
"@acala-network/eth-providers": "^2.7.7",
"@acala-network/sdk": "4.1.9-13",
"@acala-network/sdk-core": "4.1.9-13",
"@acala-network/sdk-loan": "4.1.9-13",
"@acala-network/sdk-stable-asset": "1.3.3",
"@acala-network/sdk-swap": "4.1.9-13",
"@acala-network/types": "^6.0.0-34",
"@babel/runtime": "^7.22.15",
"@duneanalytics/client-sdk": "^0.1.5",
"@polkadot/api": "^10.9.1",
"@solana/web3.js": "^1.95.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"axios": "^1.5.0",
"axios-https-proxy-fix": "^0.17.1",
"bignumber.js": "^9.1.2",
"dotenv": "^16.0.3",
"ethereum-waffle": "^4.0.10",
"ethers": "5.4.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@polkadot/ts": "^0.3.59",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"chai": "^4.3.7",
"jest": "^26.4.2",
"mocha": "^10.2.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"stakeLST": "mocha ./testCase/stakeLSTCase.test.ts",
"stakeLSTV2": "mocha ./testCase/stakeLSTV2Case.test.ts",
"wrappedTDOT": "mocha ./testCase/wrappedTDOTCase.test.ts",
"wrappedTUSD": "mocha ./testCase/wrappedTUSDCase.test.ts",
"stableAssetStakeUtil": "mocha ./testCase/stableAssetStakeUtilCase.test.ts",
"lendingPool": "mocha ./testCase/lendingPoolCase.test.ts",
"dexStakeUtil": "mocha ./testCase/dexStakeUtil.test.ts"
}
}