-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "contract_starter",
"version": "1.0.0",
"description": "contract template repository developed by solidity",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"init": "sh init.sh",
"build": "forge build",
"test": "forge test",
"slither": "slither .",
"mythril": "docker run -v $(pwd):/code --workdir /code mythril/myth analyze src/*.sol --solc-json mythril.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phenix3443/contract_starter.git"
},
"keywords": [
"solidity",
"foundry",
"smart-contract",
"ethereum"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/phenix3443/contract_starter/issues"
},
"homepage": "https://github.com/phenix3443/contract_starter#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.2",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3"
},
"lint-staged": {
"*.sol": [
"solhint",
"prettier --write --plugin=prettier-plugin-solidity"
],
"*.{js,jsx,ts,tsx}": "prettier --write",
"*.md": "prettier --write"
}
}