diff options
Diffstat (limited to 'api/package.json')
-rw-r--r-- | api/package.json | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/api/package.json b/api/package.json new file mode 100644 index 00000000..bb22f94c --- /dev/null +++ b/api/package.json @@ -0,0 +1,86 @@ +{ + "name": "@fosscord/api", + "version": "1.0.0", + "description": "This repository contains the HTTP API Server", + "main": "dist/Server.js", + "types": "dist/Server.d.ts", + "scripts": { + "test": "jest", + "test:watch": "jest --watch", + "start": "npm run build && node dist/start", + "build": "tsc -b .", + "build-docker": "tsc -p tsconfig-docker.json", + "dev": "tsnd --respawn src/start.ts", + "bundle:macos": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api.app' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-macos.app.tgz' 'fosscord-api.app'", + "bundle:linux": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-linux.tgz' 'fosscord'", + "bundle:windows": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api-windows.exe' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js'" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/fosscord/fosscord-api.git" + }, + "keywords": [ + "discord", + "fosscord", + "fosscord-api", + "discord open source", + "discord-open-source" + ], + "author": "Fosscord", + "license": "ISC", + "bugs": { + "url": "https://github.com/fosscord/fosscord-api/issues" + }, + "homepage": "https://github.com/fosscord/fosscord-api#readme", + "dependencies": { + "@fosscord/server-util": "^1.3.52", + "@types/jest": "^26.0.22", + "@types/json-schema": "^7.0.7", + "ajv": "^8.4.0", + "ajv-formats": "^2.1.0", + "amqplib": "^0.8.0", + "assert": "^1.5.0", + "atomically": "^1.7.0", + "bcrypt": "^5.0.1", + "body-parser": "^1.19.0", + "canvas": "^2.8.0", + "cheerio": "^1.0.0-rc.9", + "dot-prop": "^6.0.1", + "dotenv": "^8.2.0", + "env-paths": "^2.2.1", + "express": "^4.17.1", + "express-validator": "^6.9.2", + "form-data": "^3.0.0", + "i18next": "^19.8.5", + "i18next-http-middleware": "^3.1.3", + "i18next-node-fs-backend": "^2.1.3", + "image-size": "^1.0.0", + "jsonwebtoken": "^8.5.1", + "lambert-server": "^1.2.8", + "missing-native-js-functions": "^1.2.6", + "mongoose": "^5.12.3", + "mongoose-autopopulate": "^0.12.3", + "mongoose-long": "^0.3.2", + "multer": "^1.4.2", + "node-fetch": "^2.6.1", + "require_optional": "^1.0.1" + }, + "devDependencies": { + "@types/amqplib": "^0.8.1", + "@types/bcrypt": "^5.0.0", + "@types/express": "^4.17.9", + "@types/i18next-node-fs-backend": "^2.1.0", + "@types/jsonwebtoken": "^8.5.0", + "@types/multer": "^1.4.5", + "@types/node": "^14.14.22", + "@types/node-fetch": "^2.5.7", + "@zerollup/ts-transform-paths": "^1.7.18", + "0x": "^4.10.2", + "caxa": "^2.1.0", + "jest": "^26.6.3", + "saslprep": "^1.0.3", + "ts-node": "^9.1.1", + "ts-node-dev": "^1.1.6", + "typescript": "^4.1.2" + } +} |