-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
31 lines (31 loc) · 850 Bytes
/
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
{
"name": "synassets-contracts",
"version": "1.0.0",
"description": "Smart Contracts for Synassets",
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.12",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.5.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5"
},
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"start": "npx hardhat run scripts/deployAll.js",
"lint:sol": "solhint -f table contracts/**/*.sol"
}
}