-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "liquidator",
"version": "0.1.0",
"description": "Liquidator for Synthetify",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"vaults": "ts-node ./src/vaults.ts",
"test": "ts-mocha tests/test.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synthetify/liquidator.git"
},
"author": "Mateusz Zając",
"license": "ISC",
"dependencies": {
"@project-serum/anchor": "0.18.2",
"@project-serum/serum": "^0.13.33",
"@pythnetwork/client": "2.2.0",
"@solana/spl-token": "^0.1.3",
"@solana/web3.js": "^1.2.3",
"@synthetify/sdk": "^1.0.24",
"mocha": "^8.3.2",
"ts-mocha": "^8.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.17.5",
"chai": "^4.3.0",
"colors": "^1.4.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",
"nodemon": "^2.0.12",
"prettier": "^2.2.1",
"prettier-config-standard": "^4.0.0",
"typescript": "^4.2.3"
},
"bugs": {
"url": "https://github.com/Synthetify/liquidator/issues"
},
"homepage": "https://github.com/Synthetify/liquidator#readme"
}