-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "yieldprop",
"version": "1.0.0",
"description": "AI-Powered Dynamic Real Estate Yield Optimization Protocol",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"test:unit": "hardhat test --grep 'test.ts'",
"test:integration": "hardhat test test/Integration.test.ts",
"test:workflow": "hardhat test test/WorkflowConfiguration.test.ts",
"test:property": "forge test",
"test:property:verbose": "forge test -vvv",
"test:all": "npm run test:unit && npm run test:property",
"test:coverage": "hardhat coverage",
"test:coverage:forge": "forge coverage",
"compile": "hardhat compile",
"compile:forge": "forge build",
"deploy": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:local": "hardhat run scripts/deploy.ts --network hardhat",
"deploy:tenderly": "hardhat run scripts/deploy.ts --network tenderly",
"deploy:consumer:sepolia": "hardhat run scripts/deploy-consumer.ts --network sepolia",
"deploy:consumer:tenderly": "hardhat run scripts/deploy-consumer.ts --network tenderly",
"sync:addresses": "node scripts/sync-dashboard-addresses.js",
"mint:usdc": "hardhat run scripts/mint-usdc.ts --network sepolia",
"mint:usdc:tenderly": "hardhat run scripts/mint-usdc.ts --network tenderly",
"verify": "hardhat verify --network sepolia",
"cre:setup": "cd cre-workflow/yieldprop-workflow && bun install",
"cre:simulate": "cd cre-workflow && cre workflow simulate yieldprop-workflow --target staging-settings",
"cre:simulate:production": "cd cre-workflow && cre workflow simulate yieldprop-workflow --target production-settings",
"cre:simulate:confidential": "cd cre-workflow && cre workflow simulate yieldprop-workflow --target confidential-settings",
"cre:simulate:tenderly": "cd cre-workflow && cre workflow simulate yieldprop-workflow --target tenderly-settings",
"tenderly:full": "npm run deploy:tenderly && npm run deploy:consumer:tenderly && npm run cre:simulate:tenderly",
"node": "hardhat node",
"clean": "hardhat clean && forge clean",
"clean:all": "npm run clean && rm -rf node_modules package-lock.json && npm install"
},
"keywords": [
"blockchain",
"ethereum",
"real-estate",
"tokenization",
"defi",
"ai"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.3",
"fast-check": "^4.5.3",
"forge-std": "^1.1.2",
"hardhat": "^2.28.4",
"js-yaml": "^4.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"dotenv": "^17.2.4",
"openai": "^6.20.0"
}
}