generated from pseudoyu/foundry-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 840 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
{
"name": "foundry-starter-kit",
"license": "MIT",
"version": "2.1.1",
"devDependencies": {
"@openzeppelin/contracts": "4.9.3",
"dotenv": "^16.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.0",
"ts-node": "^10.9.1",
"typechain": "^5.1.2",
"typescript": "^5.0.0"
},
"scripts": {
"setup": "make clean && make build",
"sync": "make install",
"test": "make test",
"snapshot": "make snapshot",
"lint": "make lint",
"solhint": "make solhint",
"upgradeable": "make upgradeable",
"mythril": "make mythril",
"storage-layout": "make storage-layout",
"prepare": "husky install"
}
}