-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
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
74
75
76
77
{
"name": "picklefinance-core",
"version": "0.5.55",
"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",
"readme": "node lib/readmeMain.js",
"user": "node lib/usermain.js",
"docs": "node lib/docsMain.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",
"format": "prettier --write \"./**/*.{json,js,jsx,ts,tsx}\" --ignore-path .gitignore",
"test": "jest --coverage",
"test:watch": "jest --watch",
"typechain": "typechain --target ethers-v5 --outDir ./src/Contracts/ContractsImpl ./src/Contracts/ABIs/**/*.json",
"local": "yarn build && yarn start > build-output.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": "^27.0.3",
"@types/node": "~14.14.45",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "~27.0.6",
"prettier": "^2.8.7",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.3",
"ts-node": "^10.9.1",
"tsutils": "~3.21.0",
"typechain": "^4.0.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@thanpolas/univ3prices": "^3.0.2",
"@types/i18n": "^0.13.1",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.8.2",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.4",
"dotenv": "^16.0.3",
"ethers": "^5.6.2",
"ethers-multicall": "^0.2.1",
"ethers-multiprovider": "^0.1.3",
"i18n": "^0.13.3",
"moment": "^2.29.1",
"tslib": "~2.3.0",
"web3-utils": "^1.6.1"
},
"volta": {
"node": "14.16.1"
}
}