-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
70 lines (70 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
{
"name": "@idriss-xyz/address-book",
"version": "1.0.0",
"main": "./lib/index.js",
"module": "./lib/esnext/index.js",
"exports": {
".": {
"import": "./lib/esnext/index.js",
"require": "./lib/index.js"
},
"./lib/browser": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./lib/browser.js": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./browser": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./cjs/browser": {
"require": "./lib/browser.js"
}
},
"repository": "https://github.com/idriss-xyz/address-book.git",
"author": "IDRISS",
"license": "MIT",
"scripts": {
"build": "tsc -d --declarationDir lib --module commonjs && tsc -d --declarationDir lib/esnext --outDir lib/esnext --module es2020 && webpack --env m=1 && webpack --env m=2",
"buildDev": "tsc -d --declarationDir lib --watch",
"testE2e": "yarn hardhat test",
"compileWeb3": "yarn hardhat compile",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@types/node-fetch": "^2.5.12",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"ethers": "^5.6.9",
"node-fetch": "^2.6.7",
"prettier": "^3.1.1",
"web3": "^1.7.4"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.6",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@total-typescript/ts-reset": "^0.5.1",
"@truffle/hdwallet-provider": "^2.0.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.18.1",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"mocha": "^9.2.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}