-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
47 lines (47 loc) · 1.6 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
{
"name": "@synapsecns/contracts-core",
"version": "1.0.35",
"description": "",
"scripts": {
"build": "yarn build:contracts && yarn build:typescript && yarn build:go",
"build:go": "script/sh/flatten.sh contracts/*.sol contracts/manager/*.sol contracts/inbox/*.sol test/harnesses/*.sol test/harnesses/manager/*.sol test/harnesses/libs/**/*.sol contracts/client/*.sol",
"build:contracts": "forge build",
"build:slither": "forge build --out=out --build-info --force",
"test:coverage": "echo 'Please use foundry'",
"build:typescript": "forge build && typechain --target ethers-v5 'artifacts/**/*json'",
"prepublishOnly": "yarn build:typescript",
"test": "forge test",
"lint:contracts:fix": "forge fmt && solhint --fix -c .solhint.json '{contracts,script,test}/**/*.sol'",
"lint:fix": "yarn lint:contracts:fix",
"lint": "forge fmt",
"ci:lint": "forge fmt --check && solhint -c .solhint.json '{contracts,script,test}/**/*.sol'"
},
"files": [
"contracts/**/*.sol",
"types/"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@typechain/ethers-v5": "10.0.0",
"hardhat": "2.22.2",
"rimraf": "3.0.2",
"solhint": "5.0.3",
"typechain": "8.0.0",
"typescript": "4.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synapsecns/sanguine.git"
},
"dependencies": {
"@nodelib/fs.walk": "1.2.8",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"dotenv": "16.0.1",
"solidity-coverage": "0.7.21",
"ts-node": "10.8.1"
}
}