-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.06 KB
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
{
"name": "paycrest",
"version": "1.0.0",
"description": "cross-border payment facilitator, using blockchain technology and peer-to-peer off-ramps for transactions",
"main": "index.js",
"repository": "https://github.com/paycrest/contracts",
"scripts": {
"test": "npx hardhat test",
"ownership": "npx hardhat test mocha test/gateway/gateway.ownable.test.js",
"settleOrder": "npx hardhat test test/gateway/gateway.settleOrder.test.js",
"createOrder": "npx hardhat test test/gateway/gateway.createorder.test.js",
"compile": "npx hardhat compile",
"lint:sol": "prettier --loglevel warn --ignore-path .gitignore 'contracts/**/*.sol' --check && solhint 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --loglevel warn --ignore-path .gitignore 'contracts/**/*.sol' --write"
},
"keywords": [],
"author": "https://onahprosper.github.io/",
"license": "MIT",
"type": "module",
"devDependencies": {
"@daochild/tronweb-typescript": "^1.1.2",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-ethers": "^4.0.4",
"@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.4",
"@nomicfoundation/hardhat-ignition": "^3.0.9",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.9",
"@nomicfoundation/hardhat-keystore": "^3.0.5",
"@nomicfoundation/hardhat-mocha": "^3.0.12",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.3",
"@nomicfoundation/hardhat-typechain": "^3.0.1",
"@nomicfoundation/hardhat-verify": "^3.0.8",
"@nomicfoundation/ignition-core": "^3.0.9",
"@openzeppelin/truffle-upgrades": "^1.21.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"chai": "^6.2.2",
"dotenv": "^16.0.2",
"ethers": "^6.16.0",
"hardhat": "^3.1.9",
"mocha": "^11.3.0",
"ts-node": "^10.9.2",
"typechain": "^8.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"crypto-js": "^4.1.1",
"tronweb": "^5.3.1"
}
}