forked from rawbdor/picklefinance-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "picklefinance-core",
"version": "0.2.1",
"description": "A repository for all picklefinance core code",
"engines": {
"node": ">= 14.16"
},
"author": "Bwar",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "node lib/main.js",
"build": "npm run clean && npm run compile",
"clean": "rm -rf out || rmdir out /s /q",
"compile": "tsc -p ./",
"prepublish": "tsc -p .",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"typechain": "typechain --target ethers-v5 --outDir ./src/Contracts/ContractsImpl ./src/Contracts/ABIs/**/*.json"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robstryker/picklefinance-core"
},
"bugs": {
"url": "https://github.com/robstryker/picklefinance-core/issues"
},
"devDependencies": {
"@typechain/ethers-v5": "^6.0.0",
"@types/jest": "~26.0.23",
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"jest": "~27.0.6",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.3",
"tsutils": "~3.21.0",
"typechain": "^4.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.1.0",
"@ethersproject/providers": "^5.1.0",
"@types/coingecko-api": "^1.0.0",
"coingecko-api": "^1.0.10",
"cross-fetch": "^3.1.4",
"ethers": "^5.1.0",
"ethers-multicall": "^0.2.1",
"moment": "^2.29.1",
"tslib": "~2.3.0",
"web3": "^1.3.6"
},
"volta": {
"node": "14.16.1"
}
}