-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@axie/ronin-smart-contracts",
"version": "1.0.1",
"description": "Axie Infinity gateway smart contracts.",
"author": "Axie Infinity Engineering <[email protected]>",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"clean": "hardhat clean && rimraf dist cache",
"lint:fix": "lint-staged",
"prepare": "husky install",
"build": "hardhat compile && tsc -p tsconfig.build.json"
},
"lint-staged": {
"contracts/**/*.sol": "prettier --write",
"{test,src}/!(types)/*.{js,ts}": "prettier --write",
"hardhat.config.{js,ts}": "prettier --write"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"dependencies": {
"@openzeppelin/contracts": "^4.4.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.7.1",
"hardhat-deploy": "^0.9.14",
"husky": "^7.0.4",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solc-0.8": "npm:solc@^0.8.0",
"solhint": "^3.3.6",
"solidity-docgen": "0.5.16",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=12"
}
}