-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
60
61
62
{
"name": "coinos",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "bun index.ts",
"dev": "nodemon --exec bun index.ts",
"format": "biome format *.js **/*.js --write"
},
"dependencies": {
"@asoltys/clightning-client": "^0.1.6",
"@aws-sdk/client-ses": "^3.449.0",
"@cashu/cashu-ts": "^2.0.0-rc3",
"@coinos/rpc": "^0.0.6",
"@fastify/cors": "^8.3.0",
"@fastify/http-proxy": "^9.5.0",
"@fastify/multipart": "^8.0.0",
"@fastify/passport": "^2.4.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/secure-session": "^7.5.1",
"@fastify/static": "^6.5.0",
"@fastify/websocket": "^10.0.1",
"@noble/hashes": "^1.4.0",
"bech32": "^2.0.0",
"buffer-crc32": "^0.2.13",
"clightning-client": "github:asoltys/lightning-client-js#master",
"date-fns": "^2.21.3",
"fastify": "^4.28.1",
"file-type": "^18.0.0",
"fluent-ffmpeg": "^2.1.2",
"got": "^13.0.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"lnurl": "^0.24.2",
"mqtt": "^5.0.2",
"nostr": "^0.2.7",
"nostr-tools": "^2.7.2",
"otplib": "^12.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "1.0.0",
"pino": "8",
"pino-pretty": "^7.0.0",
"pump": "^3.0.0",
"readable-stream-clone": "^0.0.7",
"redis": "^4.6.10",
"sharp": "^0.33.5",
"uuid": "8",
"web-push": "^3.6.7",
"ws": "^7.4.6"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@types/bun": "^1.1.8",
"nodemon": "^2.0.7",
"typescript": "^5.5.4"
},
"apidoc": {
"title": "CoinOS Server API Documentation",
"url": "https://coinos.io/api"
},
"type": "module"
}