-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 2.6 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": "ronin-dpos-contract",
"version": "1.0.0",
"description": "Axie Infinity Dapps smart contracts.",
"author": "Axie Infinity Engineering <[email protected]>",
"main": "dist/src/types/index.js",
"types": "dist/src/types/index.d.ts",
"scripts": {
"compile": "forge build && TS_NODE_TRANSPILE_ONLY=1 hardhat compile",
"test": "forge test -vvv && forge snapshot --snap logs/.gas-snapshot && hardhat test",
"test:foundry:ci": "forge test --no-match-path '*forking/*' -vvv ",
"test:ci": "forge test --no-match-path '*forking/*' -vvv && hardhat test",
"clean": "hardhat clean && rimraf dist cache",
"lint:fix": "lint-staged",
"docgen": "solidity-docgen -t templates/docs -H templates/docs/helper.js -i contracts -e contracts/mocks -o docs --solc-module solc-0.8",
"prepare": "husky install",
"build": "hardhat compile && tsc -p tsconfig.build.json",
"plugin:init-foundry": "hardhat init-foundry",
"plugin:size-contracts": "hardhat size-contracts",
"plugin:upload-selectors": "hardhat upload-selectors",
"plugin:storage-layout": "hardhat generate-storage-layout --inline --table",
"plugin:sourcify": "hardhat sourcify --endpoint https://sourcify.roninchain.com/server"
},
"lint-staged": {
"contracts/**/*.sol": "prettier --write",
"{test,src}/**/*.{js,ts}": "prettier --write",
"hardhat.config.{js,ts}": "prettier --write"
},
"dependencies": {
"@openzeppelin/contracts": "4.7.3"
},
"devDependencies": {
"@bahuy3103/hardhat-contract-sizer": "2.10.3",
"@bahuy3103/hardhat-storage-layout": "0.2.6",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@solidstate/hardhat-4byte-uploader": "^1.1.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/fs-extra": "11.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethers": "^5.5.2",
"fs-extra": "11.1.1",
"hardhat": "2.14.0",
"hardhat-deploy": "0.11.29",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"lint-staged": "14.0.1",
"lodash.isequal": "^4.5.0",
"lodash.uniqwith": "^4.5.0",
"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",
"table": "^6.8.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14"
}
}