1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 10:11:34 +02:00
server/api/package.json

99 lines
2.6 KiB
JSON
Raw Normal View History

2020-11-28 19:31:04 +01:00
{
2021-04-22 23:29:06 +02:00
"name": "@fosscord/api",
2021-01-01 22:26:20 +01:00
"version": "1.0.0",
"description": "This repository contains the HTTP API Server",
2021-04-22 23:29:06 +02:00
"main": "dist/Server.js",
"types": "dist/Server.d.ts",
2021-01-01 22:26:20 +01:00
"scripts": {
2021-09-01 22:13:27 +02:00
"test": "npm run build && jest --coverage --verbose --forceExit ./tests",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
2021-08-18 16:10:11 +02:00
"build": "npx tsc -b .",
2021-07-28 00:55:59 +02:00
"build-docker": "tsc -p tsconfig-docker.json",
2021-09-01 23:35:20 +02:00
"dev": "tsnd --respawn src/start.ts",
"patch": "patch-package",
"postinstall": "npm run patch"
2021-01-01 22:26:20 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosscord/fosscord-server.git"
2021-01-01 22:26:20 +01:00
},
2021-04-22 23:29:06 +02:00
"keywords": [
"discord",
"fosscord",
"fosscord-server",
2021-04-22 23:29:06 +02:00
"fosscord-api",
"discord open source",
"discord-open-source"
],
"author": "Fosscord",
2021-01-01 22:26:20 +01:00
"license": "ISC",
"bugs": {
"url": "https://github.com/fosscord/fosscord-server/issues"
2021-01-01 22:26:20 +01:00
},
"homepage": "https://fosscord.com",
2021-08-15 13:53:21 +02:00
"devDependencies": {
"@types/amqplib": "^0.8.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.9",
"@types/i18next-node-fs-backend": "^2.1.0",
2021-08-27 11:10:42 +02:00
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.0",
2021-08-15 21:56:30 +02:00
"@types/mongodb": "^3.6.9",
2021-08-15 22:18:53 +02:00
"@types/mongoose": "^5.10.5",
2021-08-15 21:56:30 +02:00
"@types/mongoose-autopopulate": "^0.10.1",
"@types/mongoose-lean-virtuals": "^0.5.1",
"@types/multer": "^1.4.5",
"@types/node": "^14.17.9",
"@types/node-fetch": "^2.5.7",
"@zerollup/ts-transform-paths": "^1.7.18",
2021-08-15 21:56:30 +02:00
"0x": "^4.10.2",
2021-08-15 13:53:21 +02:00
"caxa": "^2.1.0",
2021-08-15 21:56:30 +02:00
"image-size": "^1.0.0",
2021-08-15 13:53:21 +02:00
"jest": "^26.6.3",
"saslprep": "^1.0.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
2021-09-01 23:35:20 +02:00
"typescript": "^4.4.2",
"typescript-json-schema": "^0.50.1"
2021-08-15 13:53:21 +02:00
},
"dependencies": {
"@fosscord/util": "file:../util",
"ajv": "^8.4.0",
"ajv-formats": "^2.1.0",
2021-08-11 19:43:27 +02:00
"amqplib": "^0.8.0",
"assert": "^1.5.0",
"atomically": "^1.7.0",
"bcrypt": "^5.0.1",
2021-02-02 00:51:00 +01:00
"body-parser": "^1.19.0",
2021-05-28 22:40:34 +02:00
"cheerio": "^1.0.0-rc.9",
"dot-prop": "^6.0.1",
2021-02-16 13:30:53 +01:00
"dotenv": "^8.2.0",
"env-paths": "^2.2.1",
2021-01-01 22:26:20 +01:00
"express": "^4.17.1",
2021-01-30 19:58:15 +01:00
"express-validator": "^6.9.2",
2021-05-30 01:44:09 +02:00
"form-data": "^3.0.0",
2021-02-01 21:49:01 +01:00
"i18next": "^19.8.5",
"i18next-http-middleware": "^3.1.3",
2021-02-02 00:51:00 +01:00
"i18next-node-fs-backend": "^2.1.3",
2021-01-30 19:58:15 +01:00
"jsonwebtoken": "^8.5.1",
2021-08-29 16:58:46 +02:00
"lambert-server": "^1.2.10",
2021-09-03 03:38:40 +02:00
"missing-native-js-functions": "^1.2.15",
2021-04-06 23:23:20 +02:00
"mongoose": "^5.12.3",
"mongoose-autopopulate": "^0.12.3",
2021-02-14 19:01:41 +01:00
"mongoose-long": "^0.3.2",
2021-06-28 18:43:50 +02:00
"multer": "^1.4.2",
2021-08-27 11:10:42 +02:00
"node-fetch": "^2.6.1",
2021-09-01 23:35:20 +02:00
"patch-package": "^6.4.7",
2021-08-30 16:12:05 +02:00
"supertest": "^6.1.6",
2021-08-27 11:10:42 +02:00
"typeorm": "^0.2.37"
2021-08-30 16:12:05 +02:00
},
"jest": {
2021-08-30 16:21:54 +02:00
"setupFiles": [
2021-09-01 22:13:27 +02:00
"<rootDir>/jest/setup.js"
2021-08-30 16:12:05 +02:00
],
2021-09-01 22:13:27 +02:00
"globalSetup": "<rootDir>/scripts/globalSetup.js",
2021-08-30 16:12:05 +02:00
"verbose": true
2021-01-01 22:26:20 +01:00
}
2020-11-28 19:31:04 +01:00
}