From d559b0dbd7f37d577370aa2428db1fb060eff7d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Mielcarek?= Date: Wed, 15 May 2024 23:10:50 +0200 Subject: [PATCH] Fix CI --- script/package.json | 4 ++-- web/Dockerfile | 2 +- web/src/package.json | 10 ++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/script/package.json b/script/package.json index cda1ab6..043aa03 100644 --- a/script/package.json +++ b/script/package.json @@ -1,5 +1,5 @@ { - "name": "script", + "name": "bigbrother-script", "version": "1.0.0", "description": "", "main": "app.js", @@ -19,4 +19,4 @@ "devDependencies": { "jest": "^29.7.0" } -} +} \ No newline at end of file diff --git a/web/Dockerfile b/web/Dockerfile index 0873311..1658c1d 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && \ # Set working directory inside the container WORKDIR /usr/src/app -COPY web/src/package*.json ./ +COPY web/src/package*.json ./web/src/ RUN npm install ./web/src RUN pip3 install os diff --git a/web/src/package.json b/web/src/package.json index 5e12f1d..a6b4788 100644 --- a/web/src/package.json +++ b/web/src/package.json @@ -1,4 +1,14 @@ { + "name": "bigbrother-web", + "version": "1.0.0", + "description": "", + "main": "app.js", + "keywords": [ + "big-brother", + "spotify" + ], + "author": "Félix Mielcarek", + "license": "MIT", "dependencies": { "axios": "^1.6.7", "cookie-parser": "^1.4.6",