forked from SummerOfBitcoin/code-challenge-2024-ajaysehwal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 802 Bytes
/
package.json
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
{
"name": "blockchain",
"version": "1.0.0",
"main": "index.js",
"author": "Ajay Sehwal",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"build": "tsc -p .",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/node": "^20.11.30",
"@types/ripemd160": "^2.0.3",
"@types/secp256k1": "^4.0.6",
"@types/varint": "^6.0.3",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.4.3"
},
"dependencies": {
"asn1.js": "^5.4.1",
"chalk": "^4",
"crypto": "^1.0.1",
"elliptic": "^6.5.5",
"nodemon": "^3.1.0",
"ripemd160": "^2.0.2",
"secp256k1": "^5.0.0",
"varint": "^6.0.0",
"varuint-bitcoin": "^1.1.2"
}
}