-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1018 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1018 Bytes
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
{
"name": "builder-badge-nft",
"version": "1.0.0",
"description": "Premium Stacks-native NFT collection and vault system.",
"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\"",
"server": "tsx src/chainhook-server.ts"
},
"author": "cryptoflops",
"license": "MIT",
"dependencies": {
"@hirosystems/chainhooks-client": "^1.0.0",
"@stacks/transactions": "^7.2.0",
"body-parser": "^2.2.1",
"chokidar-cli": "^3.0.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"vitest-environment-clarinet": "^3.0.0"
},
"devDependencies": {
"@stacks/clarinet-sdk": "^3.14.0",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^24.4.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}