-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@mempool/mempool.js": "^2.3.0",
"@unisat/ord-utils": "^0.4.0",
"@unisat/wallet-utils": "^1.0.0",
"axios": "^1.6.7",
"big-varuint-js": "^0.2.1",
"bitcoinjs-lib": "^6.1.5",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ecpair": "^2.1.0",
"express": "^4.18.3",
"express-promise-router": "^4.1.1",
"express-rate-limit": "^7.3.1",
"mongoose": "^8.2.1",
"mongoose-sequence": "^6.0.1",
"node-cron": "^3.0.3",
"node-fetch": "^2.7.0",
"randomstring": "^1.3.0",
"runelib": "^1.0.6",
"runestone-js": "^0.3.0",
"socket.io": "^4.7.5",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.11.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.26",
"@types/node-cron": "^3.0.11",
"@types/node-fetch": "^2.6.11",
"@types/node-schedule": "^2.1.6",
"@types/randomstring": "^1.1.12",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}