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

48 lines
1.3 KiB
JSON
Raw Normal View History

2020-11-28 19:31:04 +01:00
{
2021-02-09 19:37:39 +01: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-01-01 22:26:20 +01:00
"main": "index.js",
"scripts": {
2021-02-03 14:49:13 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/",
"build": "tsc -b ."
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
},
"keywords": [],
"author": "",
"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-02-01 21:49:01 +01:00
"bcrypt": "^5.0.0",
2021-02-02 00:51:00 +01:00
"body-parser": "^1.19.0",
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-02-10 22:03:40 +01:00
"fosscord-server-util": "github:fosscord/fosscord-server-util",
2021-02-01 21:49:01 +01:00
"i18next": "^19.8.5",
"i18next-http-middleware": "^3.1.0",
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-02-10 14:34:54 +01:00
"lambert-db": "^1.1.8",
2021-02-02 00:51:00 +01:00
"lambert-server": "^1.0.10",
"missing-native-js-functions": "^1.2.2",
2021-02-03 18:15:15 +01:00
"node-fetch": "^2.6.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",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.7",
2021-01-30 19:58:15 +01:00
"ts-node": "^9.1.1",
2021-01-01 22:26:20 +01:00
"typescript": "^4.1.2"
}
2020-11-28 19:31:04 +01:00
}