diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-25 18:24:21 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-25 23:35:18 +1000 |
commit | 0d23eaba09a4878520bf346af4cead90d76829fc (patch) | |
tree | d930eacceff0b407b44abe55f01d8e3c5dfbfa34 /src-slowcord/status/package.json | |
parent | Allow edited_timestamp to passthrough in handleMessage (diff) | |
download | server-0d23eaba09a4878520bf346af4cead90d76829fc.tar.xz |
Refactor to mono-repo + upgrade packages
Diffstat (limited to 'src-slowcord/status/package.json')
-rw-r--r-- | src-slowcord/status/package.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src-slowcord/status/package.json b/src-slowcord/status/package.json new file mode 100644 index 00000000..ccec4f55 --- /dev/null +++ b/src-slowcord/status/package.json @@ -0,0 +1,31 @@ +{ + "name": "slowcord-status", + "version": "1.0.0", + "description": "Slowcord status service", + "main": "build/index.js", + "scripts": { + "build": "tsc -b", + "start": "node build/index.js", + "start:gateway": "node build/gateway.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/maddyunderstars/fosscord-server.git" + }, + "bugs": { + "url": "https://github.com/maddyunderstars/fosscord-server/issues" + }, + "homepage": "https://github.com/maddyunderstars/fosscord-server#readme", + "author": "MaddyUnderStars", + "license": "AGPL-3.0-only", + "devDependencies": { + "@types/node": "^18.0.6" + }, + "dependencies": { + "dotenv": "^16.0.1", + "fosscord-gopnik": "^1.0.0", + "mysql2": "^2.3.3", + "node-fetch": "^3.2.9" + }, + "type": "module" +} |