-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "invoicex",
"version": "1.0.0",
"description": "InvoiceX - Get paid TODAY for invoices due in 90 days. A DeFi invoice factoring protocol on Mantle Network.",
"main": "index.js",
"scripts": {
"build": "forge build",
"compile": "forge build",
"test": "forge test -vvv",
"test:gas": "forge test --gas-report",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info -o coverage",
"clean": "forge clean",
"snapshot": "forge snapshot",
"fmt": "forge fmt",
"fmt:check": "forge fmt --check",
"deploy:testnet": "forge script script/Deploy.s.sol:DeployScript --rpc-url mantle_testnet --broadcast --verify -vvvv",
"deploy:mainnet": "forge script script/Deploy.s.sol:DeployScript --rpc-url mantle --broadcast --verify -vvvv",
"deploy:local": "forge script script/Deploy.s.sol:DeployScript --rpc-url localhost --broadcast -vvvv",
"anvil": "anvil --fork-url ${MANTLE_RPC_URL:-https://rpc.testnet.mantle.xyz}",
"verify": "forge verify-contract",
"size": "forge build --sizes",
"inspect": "forge inspect"
},
"keywords": [
"defi",
"rwa",
"invoice",
"factoring",
"mantle",
"blockchain",
"ethereum",
"layer2",
"ai",
"zk-proof",
"foundry",
"solidity"
],
"author": "InvoiceX Team",
"license": "MIT",
"devDependencies": {
"dotenv": "^16.3.1",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0"
}
}