forked from cowri/shell-protocol-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "@cowri/shell-v3-contracts",
"description": "",
"version": "1.0.0",
"author": {
"name": "cowri",
"url": "https://github.com/cowri"
},
"devDependencies": {
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"solhint": "^3.4.0"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"packageManager": "yarn@3.4.1",
"private": true,
"scripts": {
"clean": "rimraf cache out",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint \"{script,src,test}/**/*.sol\"",
"generate-merkle-root": "npx ts-node scripts/generate-merkle-root.ts > output.json",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\"",
"coverage": "npx hardhat coverage --testfiles 'test/**'"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.8.1",
"@sablier/v2-core": "^1.1.2",
"abdk-libraries-solidity": "^3.2.0",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.0.4",
"ethers": "^5.7.0",
"forge-std": "^1.1.2",
"hardhat": "^2.10.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"shell-v2-ocean": "1.0.0",
"solidity-coverage": "^0.8.2",
"toml": "^3.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
}
}