-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "@socket.tech/socket-protocol",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"artifacts/abi"
],
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"description": "socket protocol",
"scripts": {
"build": "hardhat export-abi && tsc --project lib.tsconfig.json",
"tsc": "tsc --project lib.tsconfig.json",
"abi": "hardhat export-abi",
"lint": "prettier \"./**\" --write",
"lintContracts": "prettier \"./**\" --write --plugin=prettier-plugin-solidity",
"compile": "forge build",
"deploy": "bash setupInfraContracts.sh"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@socket.tech/dl-core": "^2.35.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "6.0.0",
"dotenv": "^16.0.3",
"ethers": "5.6.6",
"hardhat": "2.12.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.3.1",
"prettier-plugin-solidity": "^1.4.1",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.670.0",
"forge-std": "^1.1.2",
"http-server": "^14.1.1"
}
}