forked from bsv-blockchain/storage-server
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "@bsv/uhrp-lite",
"version": "0.1.0",
"main": "./out/src/index.js",
"types": "./out/src/index.d.ts",
"files": [
"out/src",
"src"
],
"repository": "https://github.com/ty-everett/lite-storage-server",
"author": "Ty Everett",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"@bsv/auth-express-middleware": "^1.2.3",
"@bsv/payment-express-middleware": "^1.2.3",
"@bsv/sdk": "^1.6.22",
"@bsv/wallet-toolbox-client": "^1.5.20",
"axios": "^0.21.1",
"body-parser": "^1.20.1",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"prettyjson": "^1.2.5"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch .env --watch src --exec \"node --inspect=0.0.0.0 -r ts-node/register src/index.ts\"",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "standard --fix ."
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"@types/prettyjson": "^0.0.33",
"jest": "^26.6.3",
"nodemon": "^2.0.19",
"standard": "^16.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}