-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 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
45
46
{
"name": "ec",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"start": "ts-node src/main.ts",
"test": "ts-mocha -t 1000000 tests/**/*.ts",
"coverage": "nyc ts-mocha tests/**/*.ts",
"format": "prettier --write ./**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.19.15",
"@types/node-fetch": "^2.5.8",
"chai-decimaljs": "^0.0.1",
"@types/chai-as-promised": "^7.1.4",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@project-serum/anchor": "0.21.0",
"@project-serum/common": "0.0.1-beta.3",
"@project-serum/serum": "^0.13.61",
"@pythnetwork/client": "^2.2.0",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.1.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"decimal.js": "^10.3.1",
"mocha": "^9.1.4",
"node-fetch": "^3.2.0",
"ts-mocha": "^9.0.2"
}
}