Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit eace9d2

Browse files
committed
chore: updated dependencies and correct node image
1 parent 667ede9 commit eace9d2

File tree

6 files changed

+628
-778
lines changed

6 files changed

+628
-778
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.16.1-alpine3.16 AS builder
1+
FROM node:18.16.1-alpine AS builder
22

33
WORKDIR /home/lnmarkets
44

@@ -17,7 +17,7 @@ RUN pnpm -C apps/front build
1717

1818
RUN pnpm --filter="@ln-markets/umbrel-api" --prod --no-optional deploy /tmp
1919

20-
FROM node:18.16.1-alpine3.16
20+
FROM node:18.16.1-alpine
2121

2222
ENV NODE_ENV="production"
2323

apps/api/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
"#src/*": "./src/*"
1717
},
1818
"dependencies": {
19+
"@paralleldrive/cuid2": "2.2.1",
1920
"bech32": "2.0.0",
20-
"bip32": "3.1.0",
21-
"bip39": "3.0.4",
21+
"bip32": "4.0.0",
22+
"bip39": "3.1.0",
2223
"cors": "2.8.5",
23-
"@paralleldrive/cuid2": "2.2.1",
2424
"express": "4.18.2",
25-
"helmet": "6.0.0",
26-
"ln-service": "54.3.1",
27-
"secp256k1": "4.0.3",
28-
"tiny-secp256k1": "2.2.1"
25+
"helmet": "7.0.0",
26+
"ln-service": "56.7.1",
27+
"secp256k1": "5.0.0",
28+
"tiny-secp256k1": "2.2.2"
2929
},
3030
"nodemonConfig": {
3131
"exec": "node src/index.js",

apps/api/src/express.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import cors from 'cors'
77
import express from 'express'
88
import {
99
dnsPrefetchControl,
10-
expectCt,
1110
frameguard,
1211
hidePoweredBy,
1312
ieNoOpen,
@@ -59,7 +58,6 @@ export const createExpressApp = () => {
5958
const app = express()
6059

6160
app.use(dnsPrefetchControl())
62-
app.use(expectCt())
6361
app.use(frameguard())
6462
app.use(hidePoweredBy())
6563
app.use(ieNoOpen())

dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.16.1-alpine3.16
1+
FROM node:18.16.1-alpine
22

33
ARG PACKAGE
44

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
"dev:stop": "cd dev && docker compose down --remove-orphans --volumes"
1919
},
2020
"devDependencies": {
21-
"@commitlint/cli": "17.4.2",
22-
"@commitlint/config-conventional": "17.4.2",
23-
"eslint": "8.32.0",
24-
"eslint-config-prettier": "8.6.0",
21+
"@commitlint/cli": "17.6.6",
22+
"@commitlint/config-conventional": "17.6.6",
23+
"eslint": "8.43.0",
24+
"eslint-config-prettier": "8.8.0",
2525
"eslint-plugin-eslint-comments": "3.2.0",
26-
"eslint-plugin-import": "2.27.4",
26+
"eslint-plugin-import": "2.27.5",
2727
"eslint-plugin-promise": "6.1.1",
28-
"eslint-plugin-tailwindcss": "3.8.0",
29-
"eslint-plugin-unicorn": "45.0.2",
30-
"eslint-plugin-vue": "9.9.0",
28+
"eslint-plugin-tailwindcss": "3.13.0",
29+
"eslint-plugin-unicorn": "47.0.0",
30+
"eslint-plugin-vue": "9.15.1",
3131
"husky": "8.0.3",
32-
"lint-staged": "13.1.0",
33-
"nodemon": "2.0.20",
34-
"prettier": "2.8.3",
32+
"lint-staged": "13.2.3",
33+
"nodemon": "2.0.22",
34+
"prettier": "2.8.8",
3535
"vue-eslint-parser": "^9.3.1"
3636
},
3737
"commitlint": {

0 commit comments

Comments
 (0)