-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.79 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": "opera-sfc",
"version": "3.0.5-rc.1",
"description": "Special Fee Contract",
"author": "Fantom Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Fantom-foundation/opera-sfc.git"
},
"scripts": {
"compile": "hardhat compile",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js-fix && npm run lint:sol-fix",
"lint:js": "prettier --log-level warn '**/*.{js,ts}' --check && eslint 'test/*.ts'",
"lint:js-fix": "prettier --log-level warn '**/*.{js,ts}' --write && eslint 'test/*.ts' --fix",
"lint:sol": "prettier --log-level warn 'contracts/**/*.sol' --check && solhint 'contracts/**/*.sol'",
"lint:sol-fix": "prettier --log-level warn 'contracts/**/*.sol' --write",
"gas-report": "env REPORT_GAS=true npm run test",
"test": "hardhat test"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.22.12",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.1",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^5.1.0",
"dotenv": "^16.0.3"
}
}