-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 950 Bytes
/
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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"retrieve": "node src/retrieveRequest.js",
"create": "node src/createRequest.js",
"pay": "node src/payRequest.js",
"declare": "node src/declarePaymentSentAndReceived.js",
"delegate": "node src/delegateDeclarePaymentSentAndReceived.js",
"hinkal-deposit": "node src/depositToHinkalShieldedAddress.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@requestnetwork/epk-signature": "0.9.5",
"@requestnetwork/payment-processor": "0.52.0",
"@requestnetwork/request-client.js": "0.54.0",
"dotenv": "16.3.1",
"ethers": "5.7.2"
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}