-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "Locker",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx hardhat node & sleep 5 && npx hardhat test",
"compile": "npx hardhat compile",
"lint": "solhint 'contracts/*.sol'",
"pretty": "npx prettier --write 'contracts/*.sol' 'contracts/test_contracts/*.sol' && npx prettier --write 'test/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawurb/Locker.git"
},
"author": "Paweł Urbanek",
"license": "MIT",
"bugs": {
"url": "https://github.com/pawurb/Locker/issues"
},
"homepage": "https://github.com/pawurb/Locker#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.16",
"hardhat": "^2.17.3",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"prompt-sync": "^4.2.0",
"solhint": "^3.6.2"
}
}