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

93 lines
2.2 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",
2021-07-08 11:05:12 +02:00
"bin": "dist/start.js",
2021-04-22 23:29:06 +02:00
"types": "dist/Server.d.ts",
2021-01-01 22:26:20 +01:00
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
2021-02-16 20:35:47 +01:00
"build": "tsc -b .",
2021-07-08 11:05:12 +02:00
"dev": "tsnd --respawn src/start.ts",
"bundle": "pkg package.json"
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [
"locales",
"assets"
],
"targets": [
"latest-win-x64"
]
2021-01-01 22:26:20 +01:00
},
"repository": {
"type": "git",
2021-02-09 19:37:39 +01:00
"url": "git+https://github.com/fosscord/fosscord-api.git"
2021-01-01 22:26:20 +01:00
},
2021-04-22 23:29:06 +02:00
"keywords": [
"discord",
"fosscord",
"fosscord-api",
"discord open source",
"discord-open-source"
],
"author": "Fosscord",
2021-01-01 22:26:20 +01:00
"license": "ISC",
"bugs": {
2021-02-09 19:37:39 +01:00
"url": "https://github.com/fosscord/fosscord-api/issues"
2021-01-01 22:26:20 +01:00
},
2021-02-09 19:37:39 +01:00
"homepage": "https://github.com/fosscord/fosscord-api#readme",
2021-01-01 22:26:20 +01:00
"dependencies": {
2021-07-08 11:05:12 +02:00
"@fosscord/server-util": "^1.3.26",
"@types/jest": "^26.0.22",
"@types/json-schema": "^7.0.7",
"ajv": "^8.4.0",
"ajv-formats": "^2.1.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",
"image-size": "^1.0.0",
2021-01-30 19:58:15 +01:00
"jsonwebtoken": "^8.5.1",
2021-06-02 19:22:22 +02:00
"lambert-server": "^1.2.5",
2021-04-07 20:26:00 +02:00
"missing-native-js-functions": "^1.2.6",
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-07-01 11:16:13 +02:00
"node-fetch": "^2.6.1",
"require_optional": "^1.0.1"
2021-01-01 22:26:20 +01:00
},
"devDependencies": {
2021-02-01 21:49:01 +01:00
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.9",
2021-02-02 00:51:00 +01:00
"@types/i18next-node-fs-backend": "^2.1.0",
2021-01-30 19:58:15 +01:00
"@types/jsonwebtoken": "^8.5.0",
2021-03-08 18:40:37 +01:00
"@types/multer": "^1.4.5",
2021-01-30 19:58:15 +01:00
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.7",
2021-03-27 21:52:02 +01:00
"@zerollup/ts-transform-paths": "^1.7.18",
2021-03-03 21:17:09 +01:00
"0x": "^4.10.2",
"jest": "^26.6.3",
2021-07-08 11:05:12 +02:00
"pkg": "^5.3.0",
2021-01-30 19:58:15 +01:00
"ts-node": "^9.1.1",
2021-04-25 23:35:19 +02:00
"ts-node-dev": "^1.1.6",
2021-01-01 22:26:20 +01:00
"typescript": "^4.1.2"
}
2020-11-28 19:31:04 +01:00
}