This repository was archived by the owner on Jul 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-13
lines changed Expand file tree Collapse file tree 3 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
- FROM node:18 AS builder
1
+ FROM node:19 AS builder
2
2
WORKDIR /app
3
3
COPY package*.json ./
4
4
RUN npm ci
5
5
COPY . .
6
6
RUN npm run build
7
7
8
- FROM node:18
8
+ FROM node:19
9
9
WORKDIR /app
10
10
COPY package* ./
11
11
RUN npm ci --production
Original file line number Diff line number Diff line change 22
22
"express" : " 4.18.2" ,
23
23
"node-fetch" : " 3.3.1" ,
24
24
"nconf" : " 0.12.0" ,
25
- "redis" : " 4.5.0 "
25
+ "redis" : " 4.6.5 "
26
26
},
27
27
"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" ,
32
32
"dotenv" : " 16.0.3" ,
33
33
"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 "
40
40
},
41
41
"keywords" : [],
42
42
"author" :
" IThundxr <[email protected] >"
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "strict" : true ,
4
+ "esModuleInterop" : true ,
5
+ "downlevelIteration" : true ,
3
6
"target" : " es2022" ,
4
7
"module" : " ES2022" ,
8
+ "rootDir" : " src" ,
5
9
"outDir" : " build" ,
6
10
"moduleResolution" : " node" ,
7
11
"sourceMap" : true ,
You can’t perform that action at this time.
0 commit comments