From 8e6237df3c3e2ba3985c31989a0aa7191298bfbb Mon Sep 17 00:00:00 2001 From: Evan Shapiro Date: Wed, 24 Apr 2024 14:59:44 -0700 Subject: [PATCH] make basic file structure --- client/package.json | 12 ++++++++++++ discordbot/package.json | 12 ++++++++++++ minaserver/package.json | 12 ++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 client/package.json create mode 100644 discordbot/package.json create mode 100644 minaserver/package.json diff --git a/client/package.json b/client/package.json new file mode 100644 index 0000000..4a28eb3 --- /dev/null +++ b/client/package.json @@ -0,0 +1,12 @@ +{ + "name": "client", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC" +} diff --git a/discordbot/package.json b/discordbot/package.json new file mode 100644 index 0000000..74a51aa --- /dev/null +++ b/discordbot/package.json @@ -0,0 +1,12 @@ +{ + "name": "discordbot", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC" +} diff --git a/minaserver/package.json b/minaserver/package.json new file mode 100644 index 0000000..07edd25 --- /dev/null +++ b/minaserver/package.json @@ -0,0 +1,12 @@ +{ + "name": "minaserver", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC" +}