Merge pull request #89 from max298/main

Cleanup of npm / yarn
This commit is contained in:
bertybuttface 2023-02-07 12:43:48 +00:00 committed by GitHub
commit 4d9b26f481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3934 additions and 10628 deletions

View File

@ -2,7 +2,8 @@ FROM node:19-slim
WORKDIR /usr/src/app
COPY package*.json ./
COPY package.json ./
COPY yarn.lock ./
RUN yarn install --frozen-lockfile --production && yarn cache clean
COPY ./tsconfig.json ./tsconfig.json

10625
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@
"node": ">=18.12.1"
},
"scripts": {
"build": "rm -f tsconfig.tsbuildinfo && npx tsc",
"build": "rm -f tsconfig.tsbuildinfo && yarn tsc",
"start": "node --enable-source-maps dist/index.js",
"typecheck": "npx tsc"
"typecheck": "yarn tsc"
},
"dependencies": {
"@keyv/mongo": "^2.1.8",

3930
yarn.lock Normal file

File diff suppressed because it is too large Load Diff