Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit 227beda

Browse files
committed
updat4es
1 parent 556a4e2 commit 227beda

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM node:18 AS builder
1+
FROM node:19 AS builder
22
WORKDIR /app
33
COPY package*.json ./
44
RUN npm ci
55
COPY . .
66
RUN npm run build
77

8-
FROM node:18
8+
FROM node:19
99
WORKDIR /app
1010
COPY package* ./
1111
RUN npm ci --production

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
"express": "4.18.2",
2323
"node-fetch": "3.3.1",
2424
"nconf": "0.12.0",
25-
"redis": "4.5.0"
25+
"redis": "4.6.5"
2626
},
2727
"devDependencies": {
28-
"@types/express": "4.17.14",
29-
"@types/node": "18.7.17",
30-
"@typescript-eslint/eslint-plugin": "5.16.0",
31-
"@typescript-eslint/parser": "5.16.0",
28+
"@types/express": "4.17.17",
29+
"@types/node": "18.15.4",
30+
"@typescript-eslint/eslint-plugin": "5.56.0",
31+
"@typescript-eslint/parser": "5.56.0",
3232
"dotenv": "16.0.3",
3333
"gray-matter": "4.0.3",
34-
"prettier": "2.8.4",
35-
"eslint": "8.11.0",
36-
"eslint-config-prettier": "8.5.0",
37-
"eslint-plugin-prettier": "4.0.0",
38-
"nodemon": "2.0.20",
39-
"typescript": "4.6.2"
34+
"prettier": "2.8.5",
35+
"eslint": "8.36.0",
36+
"eslint-config-prettier": "8.8.0",
37+
"eslint-plugin-prettier": "4.2.1",
38+
"nodemon": "2.0.21",
39+
"typescript": "4.9.5"
4040
},
4141
"keywords": [],
4242
"author": "IThundxr <[email protected]>"

tsconfig.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
3+
"strict": true,
4+
"esModuleInterop": true,
5+
"downlevelIteration": true,
36
"target": "es2022",
47
"module": "ES2022",
8+
"rootDir": "src",
59
"outDir": "build",
610
"moduleResolution": "node",
711
"sourceMap": true,

0 commit comments

Comments
 (0)