-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.06 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
{
"name": "bitnob-api-nodejs",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "echo 'Build completed'",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint . --max-warnings=0",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.9.0",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"compression": "^1.8.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"ecpair": "^3.0.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.3.0",
"pg": "^8.16.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"tiny-secp256k1": "^2.2.3",
"uuid": "^11.1.0",
"zod": "^3.25.30"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.27.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.1"
}
}