This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 2.11 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
{
"name": "elf-sdk",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"update-elf-contracts-typechain": "npm install git+https://github.com/element-fi/elf-contracts-typechain.git",
"update-elf-tokenlist": "npm install git+https://github.com/element-fi/elf-tokenlist.git",
"build": "sh scripts/build.sh",
"test": "npx hardhat compile && rm ./typechain/index.ts && npx hardhat test --config hardhat.config.test.ts ./test/*.ts",
"style-check": "npx prettier --check .",
"style-fix": "npx prettier --write .",
"lint-check": "eslint .",
"lint-fix": "eslint --fix .",
"generate-interfaces": "npm run build && npx ts-node scripts/generate-interfaces.ts"
},
"_moduleAliases": {
"test": "./test",
"src": "./src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai-almost": "^1.0.1",
"@types/lodash.keyby": "^4.6.6",
"@types/mocha": "^8.2.0",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"eslint": "^7.28.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.29",
"hardhat": "^2.6.4",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"json-to-ts": "^1.7.0",
"prettier": "^2.2.1",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.24.0",
"date-fns": "^2.25.0",
"elf-contracts-typechain": "git+https://github.com/element-fi/elf-contracts-typechain.git",
"elf-tokenlist": "git+https://github.com/element-fi/elf-tokenlist.git",
"lodash.keyby": "^4.6.0",
"ts-money": "^0.4.6",
"tsc": "^2.0.3"
}
}