1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00
server/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2020-12-30 22:49:01 +01:00
{
2021-05-10 18:04:02 +02:00
"name": "@fosscord/cdn",
2020-12-30 22:49:01 +01:00
"version": "1.0.0",
"description": "cdn for discord clone",
2021-06-23 19:15:37 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2020-12-30 22:49:01 +01:00
"scripts": {
2021-05-10 18:04:02 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b .",
2021-05-31 20:41:44 +02:00
"start": "npm run build && node dist/start.js"
2020-12-30 22:49:01 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/discord-open-source/discord-cdn.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/discord-open-source/discord-cdn/issues"
},
"homepage": "https://github.com/discord-open-source/discord-cdn#readme",
"dependencies": {
2021-08-08 00:28:48 +02:00
"@fosscord/server-util": "^1.3.42",
2020-12-30 22:49:01 +01:00
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"cheerio": "^1.0.0-rc.5",
2021-05-27 18:54:15 +02:00
"dotenv": "^10.0.0",
2020-12-30 22:49:01 +01:00
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
2021-05-28 21:19:19 +02:00
"file-type": "^16.5.0",
2021-08-07 13:15:35 +02:00
"fs-extra": "^10.0.0",
2021-05-30 01:44:46 +02:00
"image-size": "^1.0.0",
2021-05-10 18:04:02 +02:00
"lambert-db": "^1.2.3",
2021-07-18 19:51:19 +02:00
"lambert-server": "^1.2.8",
2020-12-30 22:49:01 +01:00
"missing-native-js-functions": "^1.0.8",
"multer": "^1.4.2",
2020-12-31 13:44:05 +01:00
"node-fetch": "^2.6.1",
"uuid": "^8.3.2"
2020-12-30 22:49:01 +01:00
},
"devDependencies": {
2021-05-10 18:04:02 +02:00
"@types/body-parser": "^1.19.0",
2020-12-30 22:49:01 +01:00
"@types/btoa": "^1.2.3",
2021-07-16 16:15:59 +02:00
"@types/dotenv": "^8.2.0",
2021-05-27 20:01:50 +02:00
"@types/express": "^4.17.12",
2021-08-07 13:15:35 +02:00
"@types/fs-extra": "^9.0.12",
2021-07-16 16:15:59 +02:00
"@types/multer": "^1.4.7",
2021-05-27 18:54:15 +02:00
"@types/node": "^14.17.0",
2020-12-31 13:44:05 +01:00
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^8.3.0"
2020-12-30 22:49:01 +01:00
}
}