-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "0xCast-tests",
"version": "1.0.0",
"description": "Run unit tests on this project.",
"type": "module",
"private": true,
"scripts": {
"test": "vitest run",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"interact": "tsx scripts/interact-contract.ts",
"bulk-markets": "tsx scripts/bulk-create-markets.ts",
"auto-trade": "tsx scripts/automated-trading.ts",
"lifecycle": "tsx scripts/market-lifecycle.ts",
"stress-test": "tsx scripts/stress-test.ts",
"analytics": "tsx scripts/analytics-report.ts",
"check-markets": "tsx scripts/check-markets.ts",
"liquidity": "tsx scripts/liquidity-operations.ts",
"governance": "tsx scripts/governance-operations.ts",
"multi-market": "tsx scripts/multi-outcome-trading.ts",
"oracle": "tsx scripts/oracle-operations.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hirosystems/clarinet-sdk": "^3.6.0",
"@stacks/transactions": "^7.2.0",
"@stacks/wallet-sdk": "^7.2.0",
"@types/node": "^24.4.0",
"chokidar-cli": "^3.0.0",
"toml": "^3.0.0",
"vitest": "^3.2.4",
"vitest-environment-clarinet": "^2.3.0"
},
"devDependencies": {
"@stacks/network": "^7.3.1",
"@types/prompts": "^2.4.9",
"dotenv": "^17.2.3",
"prompts": "^2.4.2",
"tsx": "^4.21.0"
}
}