From e1bd7e862eaf4de0721964fd2962f26bc0963326 Mon Sep 17 00:00:00 2001 From: Neshura Date: Sat, 3 Dec 2022 23:23:16 +0100 Subject: [PATCH] Minimize package.json and remove lock files from tracking --- .gitignore | 3 ++- package.json | 13 ++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 5698de6..16cf5eb 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ yarn-error.log* # production /build /data -/confs \ No newline at end of file +/confs +*.lock diff --git a/package.json b/package.json index 285a3bd..24b6a77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "www", - "version": "0.2.0", + "name": "readyornot", + "version": "0.1.0", "private": true, "scripts": { "dev:debug": "NODE_OPTIONS='--inspect' next dev -p 4042", @@ -10,22 +10,17 @@ "lint": "next lint" }, "dependencies": { - "@types/dockerode": "^3.3.14", "@types/next": "^9.0.0", - "dockerode": "^3.3.4", "next": "^12.3.0", - "node": "^18.9.0", - "node-html-parser": "^5.3.3", "react": "18.2.0", "react-dom": "18.2.0", "sharp": "^0.31.2", "swr": "^1.3.0" }, "devDependencies": { - "@types/node": "^18.7.18", - "@types/react": "^18.0.14", "eslint": "^8.23.1", "eslint-config-next": "12.2.0", - "typescript": "^4.7.4" + "@types/react": "^18.0.14", + "typescript": "4.9.3" } }