-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
91 lines (91 loc) · 3.01 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
{
"name": "@requestnetwork/smart-contracts",
"version": "0.47.0",
"publishConfig": {
"access": "public"
},
"description": "Smart contracts for the Request protocol.",
"keywords": [
"requestnetwork",
"smart-contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/smart-contracts#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/src/lib/index.js",
"types": "dist/src/lib/index.d.ts",
"directories": {
"lib": "src/lib",
"test": "test/lib"
},
"files": [
"dist",
"types"
],
"scripts": {
"build:lib": "tsc -b tsconfig.build.json && cp src/types/*.d.ts dist/src/types && cp -r dist/src/types types",
"build:sol": "yarn hardhat compile",
"build": "yarn build:sol && yarn build:lib",
"clean:types": "rm -rf types && rm -rf src/types",
"clean:lib": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"clean:hardhat": "rm -rf cache && rm -rf build",
"clean": "yarn clean:lib && yarn clean:types && yarn clean:hardhat",
"lint:lib": "eslint . --fix",
"lint:lib:check": "eslint .",
"lint:sol": "solhint \"src/contracts/**/*.sol\" --fix",
"lint:sol:check": "solhint \"src/contracts/**/*.sol\"",
"lint": "yarn run lint:lib && yarn run lint:sol",
"lint:check": "yarn run lint:lib:check && yarn run lint:sol:check",
"ganache": "yarn hardhat node",
"deploy": "yarn hardhat deploy-local-env --network private",
"test": "yarn hardhat test --network private",
"test:lib": "yarn jest test/lib"
},
"dependencies": {
"tslib": "2.5.0"
},
"devDependencies": {
"@ethersproject/providers": "5.7.2",
"@matterlabs/hardhat-zksync-deploy": "0.6.5",
"@matterlabs/hardhat-zksync-node": "0.0.1-beta.6",
"@matterlabs/hardhat-zksync-solc": "0.4.2",
"@matterlabs/hardhat-zksync-verify": "0.2.1",
"@matterlabs/zksync-contracts": "0.6.1",
"@nomicfoundation/hardhat-verify": "2.0.0",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "4.9.6",
"@rainbow-me/fee-suggestions": "2.1.0",
"@requestnetwork/currency": "0.27.0",
"@requestnetwork/types": "0.53.0",
"@requestnetwork/utils": "0.53.0",
"@safe-global/api-kit": "1.3.1",
"@safe-global/protocol-kit": "1.3.0",
"@superfluid-finance/ethereum-contracts": "1.1.1",
"@typechain/ethers-v5": "11.1.2",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.2.21",
"@types/mocha": "8.2.3",
"@types/node": "18.11.9",
"chai": "4.3.4",
"dotenv": "10.0.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"ganache-cli": "6.12.0",
"hardhat": "2.22.15",
"solhint": "3.3.6",
"typechain": "8.3.2",
"web3": "1.7.3",
"zksync-web3": "0.14.3"
}
}