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",
|
2021-02-06 10:06:37 +01:00
|
|
|
"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/",
|
2021-02-16 20:35:47 +01:00
|
|
|
"build": "tsc -b .",
|
|
|
|
"postinstall": "patch-package"
|
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-02-16 13:30:53 +01:00
|
|
|
"dotenv": "^8.2.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",
|
2021-02-16 15:04:55 +01:00
|
|
|
"missing-native-js-functions": "^1.2.4",
|
2021-02-14 19:01:41 +01:00
|
|
|
"mongodb": "^3.6.4",
|
|
|
|
"mongoose-long": "^0.3.2",
|
2021-03-08 18:40:37 +01:00
|
|
|
"multer": "^1.4.2",
|
2021-02-16 20:35:47 +01:00
|
|
|
"patch-package": "^6.2.2"
|
2021-01-01 22:26:20 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-02-01 21:49:01 +01:00
|
|
|
"@types/bcrypt": "^3.0.0",
|
2021-02-06 10:06:37 +01:00
|
|
|
"@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",
|
2021-02-06 10:06:37 +01:00
|
|
|
"@types/node-fetch": "^2.5.7",
|
2021-03-03 21:17:09 +01:00
|
|
|
"0x": "^4.10.2",
|
|
|
|
"node-fetch": "^2.6.1",
|
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
|
|
|
}
|