-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "@socket.tech/socket-plugs",
"license": "MIT",
"version": "1.0.29",
"description": "Plugs built using socket's data layer",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"artifacts/abi",
"deployments"
],
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:SocketDotTech/socketDL-examples.git",
"devDependencies": {
"@ethersproject/bytes": "^5.7.0",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.9",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.22",
"dotenv": "^16.0.3",
"ethers": "^5.6.6",
"hardhat": "^2.17.2",
"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.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"lint": "prettier \"./**\" --write",
"build": "hardhat export-abi && hardhat typechain && yarn buildJson && tsc --project lib.tsconfig.json",
"buildJson": "npx ts-node ./script/helpers/updateJsons.ts",
"abi": "hardhat export-abi",
"compile": "forge build",
"test": "forge test",
"setup:all": "forge install && yarn install && yarn setup:dependencies && yarn build",
"setup:dependencies": "yarn && yarn add @socket.tech/dl-core",
"script:setup": "yarn setup:dependencies && npx ts-node script/setup.ts",
"script:deploy": "npx hardhat run script/deploy.ts",
"script:verify": "npx hardhat run script/deploy/verifyContracts.ts",
"script:bridge": "npx ts-node script/bridge/bridge.ts",
"project:new": "npx ts-node script/script.ts new",
"project:edit": "npx ts-node script/script.ts edit",
"project:addToken": "npx ts-node script/script.ts add_token",
"bridge": "npx hardhat run script/bridge/bridge.ts"
},
"pre-commit": [
"lint",
"compile"
],
"dependencies": {
"@arbitrum/sdk": "^3.7.0",
"@eth-optimism/sdk": "^3.3.2",
"@socket.tech/dl-core": "^2.28.0",
"lodash": "^4.17.21",
"prompts": "^2.4.2"
}
}