-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 865 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 865 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
36
{
"name": "tokenisation-workshop",
"version": "1.0.0",
"description": "Simple BSV tokenization examples with mint and wallet",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"check-balance": "tsx src/apps/check-balance.ts",
"mint": "tsx src/apps/mint.ts",
"wallet": "tsx src/apps/wallet.ts"
},
"keywords": [
"bsv",
"blockchain",
"tokenization",
"overlay"
],
"dependencies": {
"@bsv/overlay": "^0.4.8",
"@bsv/overlay-express": "^0.8.1",
"@bsv/sdk": "^1.8.2",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"mongodb": "^6.17.0",
"mysql2": "^3.14.1",
"react": "^19.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}