forked from parallel-finance/ParallelBridge
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "@socket.tech/socket-plugs",
"license": "MIT",
"version": "1.0.11",
"description": "Plugs built using socket's data layer",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"artifacts/abi",
"deployments"
],
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:SocketDotTech/socketDL-examples.git",
"devDependencies": {
"@ethersproject/bytes": "^5.7.0",
"@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/yargs": "^17.0.22",
"dotenv": "^16.0.3",
"ethers": "^5.6.6",
"hardhat": "^2.9.5",
"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 && tsc --project lib.tsconfig.json",
"abi": "hardhat export-abi",
"compile": "forge build",
"test": "forge test"
},
"pre-commit": [
"lint",
"compile"
],
"dependencies": {
"@socket.tech/dl-core": "2.4.15-test.1"
}
}