-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "time-auction",
"version": "1.0.0",
"description": "Time-based auction system with anti-sniping protection built with Clarity 4",
"main": "index.js",
"type": "module",
"scripts": {
"test": "clarinet test",
"check": "clarinet check",
"console": "clarinet console",
"chainhooks:setup": "node src/chainhooks/setup.js",
"chainhooks:monitor": "node src/chainhooks/monitor.js",
"deploy:testnet": "clarinet deployments generate --testnet && clarinet deployments apply -p deployments/default.testnet-plan.yaml",
"deploy:mainnet": "clarinet deployments generate --mainnet && clarinet deployments apply -p deployments/default.mainnet-plan.yaml",
"contract:status": "node src/scripts/contract-status.js",
"contract:create-auction": "node src/scripts/create-auction.js"
},
"keywords": [
"stacks",
"clarity",
"blockchain",
"smart-contract",
"auction",
"time-based",
"anti-sniping",
"clarity4",
"builder-challenge"
],
"author": "",
"license": "MIT",
"dependencies": {
"@hirosystems/chainhooks-client": "^1.0.0",
"@stacks/transactions": "^6.13.0",
"@stacks/network": "^6.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"clarinet": "^3.11.0"
}
}