summary refs log tree commit diff
path: root/api/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'api/package.json')
-rw-r--r--api/package.json91
1 files changed, 0 insertions, 91 deletions
diff --git a/api/package.json b/api/package.json
deleted file mode 100644
index 1fa85884..00000000
--- a/api/package.json
+++ /dev/null
@@ -1,91 +0,0 @@
-{
-	"name": "@fosscord/api",
-	"version": "1.0.0",
-	"description": "This repository contains the HTTP API Server",
-	"main": "dist/index.js",
-	"types": "src/index.ts",
-	"scripts": {
-		"test:only": "npx jest --coverage --verbose --forceExit ./tests",
-		"test:routes": "npx jest --coverage --verbose --forceExit ./routes.test.ts",
-		"test": "npm run build && npm run test:only",
-		"test:watch": "npx jest --watch",
-		"start": "npm run build && node dist/start",
-		"build": "npx tsc -p .",
-		"dev": "npx tsnd --respawn src/start.ts",
-		"patch": "npx ts-patch install -s && npx patch-package",
-		"postinstall": "npm run patch",
-		"generate:docs": "node scripts/generate_openapi",
-		"generate:schema": "node scripts/generate_schema"
-	},
-	"repository": {
-		"type": "git",
-		"url": "git+https://github.com/fosscord/fosscord-server.git"
-	},
-	"keywords": [
-		"discord",
-		"fosscord",
-		"fosscord-server",
-		"fosscord-api",
-		"discord open source",
-		"discord-open-source"
-	],
-	"author": "Fosscord",
-	"license": "AGPL-3.0-only",
-	"bugs": {
-		"url": "https://github.com/fosscord/fosscord-server/issues"
-	},
-	"homepage": "https://fosscord.com",
-	"devDependencies": {
-		"@babel/core": "^7.18.9",
-		"@babel/preset-env": "^7.18.9",
-		"@babel/preset-typescript": "^7.15.0",
-		"@types/bcrypt": "^5.0.0",
-		"@types/express": "^4.17.9",
-		"@types/i18next-node-fs-backend": "^2.1.0",
-		"@types/morgan": "^1.9.3",
-		"@types/multer": "^1.4.5",
-		"@types/node": "^18.0.6",
-		"jest": "^28.1.3",
-		"jest-expect-message": "^1.0.2",
-		"ts-node-dev": "^2.0.0",
-		"typescript": "^4.4.2",
-		"typescript-json-schema": "^0.54.0"
-	},
-	"dependencies": {
-		"@babel/preset-typescript": "^7.15.0",
-		"@fosscord/util": "file:../util",
-		"ajv": "8.6.2",
-		"ajv-formats": "^2.1.1",
-		"bcrypt": "^5.0.1",
-		"body-parser": "^1.19.0",
-		"canvas": "^2.9.3",
-		"cheerio": "^1.0.0-rc.10",
-		"dotenv": "^16.0.1",
-		"express": "^4.17.1",
-		"i18next": "^21.8.14",
-		"i18next-http-middleware": "^3.1.3",
-		"i18next-node-fs-backend": "^2.1.3",
-		"image-size": "^1.0.0",
-		"lambert-server": "^1.2.12",
-		"missing-native-js-functions": "^1.2.18",
-		"morgan": "^1.10.0",
-		"multer": "^1.4.5-lts.1",
-		"node-2fa": "^2.0.3",
-		"node-fetch": "^2.6.7",
-		"patch-package": "^6.4.7",
-		"picocolors": "^1.0.0",
-		"proxy-agent": "^5.0.0",
-		"supertest": "^6.1.6",
-		"typeorm": "^0.3.7"
-	},
-	"jest": {
-		"setupFiles": [
-			"<rootDir>/jest/setup.js"
-		],
-		"setupFilesAfterEnv": [
-			"jest-expect-message"
-		],
-		"globalSetup": "<rootDir>/jest/globalSetup.js",
-		"verbose": true
-	}
-}