-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "@socket.tech/dl-core",
"license": "UNLICENSED",
"version": "2.37.0",
"description": "Smart contracts for socket data layer.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"artifacts/abi"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDotTech/socket-DL.git"
},
"devDependencies": {
"@arbitrum/sdk": "^3.1.13",
"@aws-sdk/client-s3": "^3.465.0",
"@eth-optimism/sdk": "^3.2.3",
"@ethersproject/bytes": "^5.7.0",
"@matterlabs/hardhat-zksync": "^1.2.0",
"@fxportal/maticjs-fxportal": "^1.1.1",
"@maticnetwork/maticjs": "^3.5.0",
"@maticnetwork/maticjs-ethers": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@socket.tech/dl-core": "2.4.37",
"@socket.tech/dl-common": "1.0.4",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.22",
"arb-shared-dependencies": "^1.0.0",
"chai": "^4.3.6",
"defender-relay-client": "^1.31.1",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.6.6",
"hardhat": "^2.22.7",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-change-network": "^0.0.7",
"hardhat-deploy": "^0.11.20",
"hardhat-preprocessor": "^0.1.4",
"pre-commit": "^1.2.2",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4",
"zksync-ethers": "5"
},
"scripts": {
"lint": "prettier \"./**\" --write",
"build": "hardhat export-abi && tsc --project lib.tsconfig.json",
"tsc": "tsc --project lib.tsconfig.json",
"abi": "hardhat export-abi",
"compile": "forge build",
"test": "prettier --write $(git diff --name-only --diff-filter d | xargs) && forge test",
"setup": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/deploy/single-click-deploy/integrators/index.ts"
},
"pre-commit": [
"lint",
"compile"
],
"dependencies": {
"axios": "^1.3.6",
"prompts": "^2.4.2",
"yargs": "^17.7.1"
}
}