-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
101 lines (101 loc) · 4.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "synapse-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "hardhat test --parallel",
"build": "hardhat compile && npm run build:go",
"build:go": "script/flatten.sh contracts/bridge/*.sol contracts/bridge/wrappers/*.sol contracts/bridge/testing/*.sol contracts/amm/*.sol contracts/messaging/*.sol contracts/messaging/apps/*.sol contracts/cctp/*.sol contracts/cctp/events/*.sol",
"post-install": "build:go",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" hardhat coverage",
"prepublishOnly": "npm run build",
"lint": "npm run prettier && solhint --fix -c .solhint.json --ignore-path .prettierignore contracts/**/*.sol test/**/*.sol",
"lint:check": "prettier --check '**/*.{sol,ts}' && solhint -c .solhint.json --ignore-path .prettierignore '{contracts,test}/**/*.sol'",
"prettier": "prettier --write '**/*.(sol|ts)'",
"hardhat:clean": "hardhat clean",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synapsecns/synapse-contracts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/synapsecns/synapse-contracts/issues"
},
"homepage": "https://github.com/synapsecns/synapse-contracts#readme",
"dependencies": {
"@codechecks/client": "^0.1.10",
"@eth-optimism/smock": "^1.1.4",
"@ethersproject/hardware-wallets": "^5.3.0",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@openzeppelin/contracts": "3.4.1",
"@openzeppelin/contracts-4.3.1": "npm:@openzeppelin/contracts@4.3.1",
"@openzeppelin/contracts-4.5.0": "npm:@openzeppelin/contracts@4.5.0",
"@openzeppelin/contracts-4.7.3": "npm:@openzeppelin/contracts@^4.7.3",
"@openzeppelin/contracts-4.8.0": "npm:@openzeppelin/contracts@4.8.0",
"@openzeppelin/contracts-4.9.5": "npm:@openzeppelin/contracts@4.9.5",
"@openzeppelin/contracts-upgradeable": "3.4.1",
"@openzeppelin/contracts-upgradeable-4.5.0": "npm:@openzeppelin/contracts-upgradeable@4.5.0",
"@openzeppelin/contracts-upgradeable-4.7.3": "npm:@openzeppelin/contracts-upgradeable@^4.7.3",
"@openzeppelin/contracts-upgradeable-4.8.0": "npm:@openzeppelin/contracts-upgradeable@4.8.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"dotenv": "^10.0.0",
"e": "^0.2.0",
"ethereumjs-wallet": "^1.0.2",
"hardhat-typechain": "^0.3.5",
"lodash": "^4.17.21",
"solium": "^1.2.5",
"synthetix": "2.45.2"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#e06e943",
"@eth-optimism/hardhat-ovm": "^0.2.4",
"@faker-js/faker": "^6.0.0-alpha.7",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.1",
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dd-trace": "^2.6.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.6.5",
"ethlint": "^1.2.5",
"hardhat": "^2.9.0",
"hardhat-deploy": "^0.9.6",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-interface-generator": "0.0.6",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.2.1",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"shelljs": "^0.8.4",
"sol-merger": "^3.1.0",
"solhint": "3.3.8",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.19",
"solidity-docgen": "^0.6.0-beta.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.1.2",
"typescript": "^4.3.2"
}
}