-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.98 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.98 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
{
"name": "baselytics-base-contracts",
"version": "1.0.0",
"description": "Base smart contracts for blockchain applications",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:basic": "node scripts/test-runner.js basic",
"test:enhanced": "node scripts/test-runner.js enhanced",
"test:integration": "node scripts/test-runner.js integration",
"test:security": "node scripts/test-runner.js security",
"test:all": "node scripts/test-runner.js all",
"coverage": "node scripts/coverage-report.js",
"gas-report": "REPORT_GAS=true hardhat test",
"deploy": "hardhat run scripts/deploy.js",
"verify": "hardhat verify",
"info": "hardhat run scripts/utils/contract-info.js",
"mint": "hardhat run scripts/interact/mint-tokens.js",
"stake": "hardhat run scripts/interact/stake-tokens.js",
"nft": "hardhat run scripts/interact/nft-operations.js",
"admin": "hardhat run scripts/admin/contract-admin.js",
"journey": "hardhat run scripts/interact/user-journey.js",
"monitor": "hardhat run scripts/monitor/event-listener.js",
"stats": "hardhat run scripts/analytics/usage-stats.js",
"revenue": "hardhat run scripts/analytics/revenue-tracker.js",
"alerts": "hardhat run scripts/alerts/threshold-monitor.js",
"summary": "hardhat run scripts/reports/daily-summary.js",
"gas-track": "hardhat run scripts/monitor/gas-tracker.js",
"frontend-config": "hardhat run scripts/utils/generate-frontend-config.js",
"dev": "cd frontend && npm start"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"erc20",
"erc721",
"erc1155",
"defi",
"nft"
],
"author": "BaseLytics Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"hardhat": "^2.17.0",
"solidity-coverage": "^0.8.4",
"hardhat-gas-reporter": "^1.0.9"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.0",
"dotenv": "^17.2.3"
}
}