forked from defi-wonderland/connext-vesting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.84 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
{
"name": "@defi-wonderland/connext-vesting",
"version": "1.0.0",
"private": true,
"description": "Vesting contract for the NEXT token",
"homepage": "https://github.com/defi-wonderland/connext-vesting#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/connext-vesting.git"
},
"license": "MIT",
"author": "Wonderland",
"scripts": {
"build": "forge build",
"coverage": "forge coverage --match-contract Integration",
"deploy": "dotenv -- bash -c 'forge script Deploy -vv --slow --broadcast --rpc-url $MAINNET_RPC --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"deploy:sepolia": "dotenv -- bash -c 'forge script Deploy -vv --slow --broadcast --rpc-url $SEPOLIA_RPC --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"lint:check": "yarn lint:sol-tests && yarn lint:sol-logic && forge fmt --check",
"lint:fix": "sort-package-json && forge fmt && yarn lint:sol-tests --fix && yarn lint:sol-logic --fix",
"lint:sol-logic": "solhint -c .solhint.json 'solidity/contracts/**/*.sol' 'solidity/interfaces/**/*.sol'",
"lint:sol-tests": "solhint 'solidity/test/**/*.sol'",
"prepare": "husky install",
"test": "forge test -vvv"
},
"lint-staged": {
"*.{js,css,md,ts,sol}": "forge fmt",
"*.sol": "solhint --fix 'solidity/**/*.sol",
"package.json": "sort-package-json"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@defi-wonderland/natspec-smells": "1.0.2",
"dotenv-cli": "7.2.1",
"ds-test": "github:dapphub/ds-test#e282159",
"forge-std": "github:foundry-rs/forge-std#v1.7.4",
"husky": ">=8",
"lint-staged": ">=10",
"solhint": "3.6.2",
"solhint-plugin-defi-wonderland": "1.1.0",
"sort-package-json": "1.53.1"
}
}