This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.91 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@runcitadel/middleware",
"version": "0.0.1",
"description": "Middleware for Citadel",
"author": "Citadel and contributors",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node --experimental-json-modules ./bin/www.mjs",
"start:watch": "nodemon --experimental-json-modules ./bin/www.mjs",
"dev": "concurrently \"yarn:build:watch\" \"yarn:start:watch\"",
"tsc:check": "tsc --noEmit",
"lint": "xo --fix .",
"lint:check": "xo .",
"build-types": "cd resources && protoc --plugin=../node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=../lnrpc --ts_proto_opt=esModuleInterop=true --ts_proto_opt=useExactTypes=false --ts_proto_opt=outputServices=generic-definitions --ts_proto_opt=forceLong=string lightning.proto walletunlocker.proto stateservice.proto",
"postinstall": "husky install"
},
"dependencies": {
"@core-ln/core": "^0.3.2",
"@grpc/grpc-js": "^1.7.3",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@runcitadel/bitcoin-rpc": "^0.0.4",
"@runcitadel/fs": "^1.0.2",
"@runcitadel/utils": "^0.9.2",
"dotenv": "^16.0.3",
"husky": "^8.0.1",
"koa": "^2.13.4",
"koa-body": "^6.0.1",
"koa-morgan": "^1.0.1",
"koa-passport": "^4.1.4",
"long": "^5.2.1",
"nice-grpc": "^2.0.1",
"passport-jwt": "^4.0.0",
"protobufjs": "^7.1.2",
"simple-lndconnect": "^1.0.5"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/koa-morgan": "^1.0.5",
"@types/koa-passport": "^4.0.3",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^12.0.0",
"@types/node": "^18",
"@types/passport-jwt": "^3.0.7",
"@types/xo": "^0",
"concurrently": "^7.5.0",
"nodemon": "^2.0.20",
"ts-proto": "^1.136.0",
"typescript": "^4.8.4",
"xo": "^0.52.4"
},
"resolutions": {
"long": "5.2.1"
},
"packageManager": "yarn@3.2.4"
}