-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 5.15 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "sidechain-oracle",
"version": "0.0.0",
"description": "Sidechain Oracle",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/sidechain-oracle.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "0xJabberwock",
"url": "https://github.com/0xJabberwock"
},
{
"name": "wei3erHase",
"url": "https://github.com/wei3erHase"
},
{
"name": "0xng",
"url": "https://github.com/0xng"
}
],
"files": [
"solidity/contracts",
"solidity/interfaces",
"artifacts/solidity/**/*.json",
"!artifacts/solidity/**/**/*.dbg.json",
"typechained",
"deployments",
"!deployments/localhost",
"!.env",
"!**/.DS_Store"
],
"scripts": {
"analyze": "slither .",
"compile": "eth-sdk && hardhat compile",
"compile:size": "hardhat compile && hardhat size-contracts",
"compile:test": "cross-env TEST=true hardhat compile",
"coverage": "hardhat coverage",
"deploy": "npx hardhat deploy",
"deploy:bridge": "yarn deploy --network sepolia --tags bridge-observation",
"deploy:dummy": "yarn deploy --network sepoliaDummy --tags data-receiver,dummy-bridge-observation",
"deploy:fetch": "yarn deploy --network sepolia --tags fetch-observation",
"deploy:force-fetch": "yarn deploy --network sepolia --tags manual-fetch-observation",
"deploy:setup": "yarn deploy --network sepolia --tags setup-connext-default",
"deploy:work": "yarn deploy --network sepolia --tags work-job",
"fork:node": "cross-env FORK=true hardhat node",
"fork:script": "cross-env FORK=true hardhat run",
"postinstall": "husky install && yarn compile:test",
"lint:check": "cross-env solhint 'solidity/**/*.sol' && cross-env prettier --check './**'",
"lint:fix": "sort-package-json && cross-env prettier --write './**' && cross-env solhint --fix 'solidity/**/*.sol'",
"prepare": "husky install",
"prepublishOnly": "hardhat clean && hardhat compile && pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"test": "yarn compile:test && cross-env TEST=true mocha",
"test:all": "yarn test './test/e2e/**/*.spec.ts' && cross-env TEST=true mocha 'test/unit/**/*.spec.ts'",
"test:all:parallel": "yarn test:parallel './test/e2e/**/*.spec.ts' 'test/unit/**/*.spec.ts'",
"test:e2e": "yarn test './test/e2e/**/*.spec.ts'",
"test:e2e:no-compile": "cross-env TEST=true mocha './test/e2e/**/*.spec.ts'",
"test:e2e:parallel": "yarn test:parallel './test/e2e/**/*.spec.ts'",
"test:gas": "cross-env REPORT_GAS=1 npx hardhat test",
"test:parallel": "yarn compile:test && cross-env TEST=true mocha --parallel",
"test:unit": "yarn test 'test/unit/**/*.spec.ts'",
"test:unit:parallel": "yarn test:parallel 'test/unit/**/*.spec.ts'"
},
"lint-staged": {
"*.{js,css,md,ts,sol}": "prettier --write",
"*.sol": "cross-env solhint --fix 'solidity/**/*.sol'",
"package.json": "sort-package-json"
},
"resolutions": {
"cli-table3@^0.5.0/colors": "1.4.0",
"cli-table@^0.3.1/colors": "1.0.3",
"eth-gas-reporter/colors": "1.4.0"
},
"dependencies": {
"@connext/nxtp-contracts": "0.2.0-alpha.29",
"@defi-wonderland/crypto-husky-checks": "1.1.1",
"@defi-wonderland/keep3r-v2": "0.0.0-ab44125a",
"@defi-wonderland/solidity-utils": "0.0.0-6c86c0fc",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@uniswap/v3-core": "1.0.2-solc-0.8-simulate",
"@uniswap/v3-periphery": "https://github.com/Uniswap/v3-periphery.git#0.8"
},
"devDependencies": {
"@codechecks/client": "0.1.12",
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@defi-wonderland/smock": "2.3.3",
"@dethcrypto/eth-sdk": "0.3.1",
"@dethcrypto/eth-sdk-client": "0.1.6",
"@nomiclabs/hardhat-ethers": "2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.5",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@typechain/ethers-v5": "10.0.0",
"@typechain/hardhat": "6.0.0",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.6.4",
"hardhat": "2.12.1-unknown-txs.0",
"hardhat-contract-sizer": "2.6.1",
"hardhat-deploy": "0.11.23",
"hardhat-gas-reporter": "1.0.8",
"hardhat-preprocessor": "0.1.4",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"lodash": "4.17.21",
"mocha": "10.0.0",
"pinst": "3.0.0",
"prettier": "2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solc-0.8": "npm:[email protected]",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solhint-plugin-wonderland": "0.0.1",
"solidity-coverage": "0.8.1",
"sort-package-json": "1.57.0",
"standard-version": "9.3.2",
"ts-node": "10.7.0",
"tsconfig-paths": "3.14.1",
"typechain": "8.0.0",
"typescript": "4.6.4"
},
"engines": {
"node": ">=16.0.0"
}
}