-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "pf-auctions",
"version": "1.0.0",
"description": "Pure Finance Descending Price Auctions",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npm run build && npx hardhat coverage",
"lint": "eslint ./test/*",
"lint:fix": "eslint --fix ./test --ext .js",
"solhint": "solhint './contracts/**/*.sol'",
"solhint:fix": "prettier --write 'contracts/**/*.sol'",
"prepare": "husky install",
"deploy": "npx hardhat deploy",
"create-release": "hardhat create-release"
},
"author": "BLOQ",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "4.8.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"compare-versions": "^6.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"husky": "^6.0.0",
"lodash": "^4.17.21",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solc": "0.8.9",
"solhint": "4.1.1",
"solhint-plugin-prettier": "0.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}