2020-11-28 19:31:04 +01:00
|
|
|
{
|
2021-02-05 16:24:51 +01:00
|
|
|
"name": "discord-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/",
|
|
|
|
"build": "tsc -b ."
|
2021-01-01 22:26:20 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-02-05 16:24:51 +01:00
|
|
|
"url": "git+https://github.com/discord-open-source/discord-api.git"
|
2021-01-01 22:26:20 +01:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"bugs": {
|
2021-02-05 16:24:51 +01:00
|
|
|
"url": "https://github.com/discord-open-source/discord-api/issues"
|
2021-01-01 22:26:20 +01:00
|
|
|
},
|
2021-02-05 16:24:51 +01:00
|
|
|
"homepage": "https://github.com/discord-open-source/discord-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-06 10:06:37 +01:00
|
|
|
"discord-server-util": "github:discord-open-source/discord-server-util",
|
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-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-07 17:57:54 +01:00
|
|
|
"lambert-db": "^1.1.6",
|
2021-02-02 00:51:00 +01:00
|
|
|
"lambert-server": "^1.0.10",
|
2021-02-06 10:06:37 +01:00
|
|
|
"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",
|
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",
|
|
|
|
"@types/node": "^14.14.22",
|
2021-02-06 10:06:37 +01:00
|
|
|
"@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
|
|
|
}
|