-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "@alium/multicall",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.15",
"@types/eslint": "^7.28.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.2",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint": "^3.3.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@alium-official/alium-swap-lib": "^0.0.3",
"@openzeppelin/contracts": "^4.4.2",
"@rarible/royalties": "^0.7.2"
},
"scripts": {
"build": "npx hardhat compile",
"dev": "npx hardhat node",
"test": "npx hardhat test",
"lint": "npx solhint 'contracts/**/*.sol' --ignore-path .solhintignore",
"prettier": "npx prettier --write 'contracts/**/*.sol'",
"prettier:js": "npx prettier --write 'test/**/*.ts'",
"lint:js": "eslint . --ext .ts",
"lint:js-fix": "eslint . --ext .ts --fix",
"dist": "npx waffle flatten"
}
}