mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-07 03:12:39 +01:00
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "@fosscord/cdn",
|
|
"version": "1.0.0",
|
|
"description": "cdn for discord clone",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run build && jest --coverage ./tests",
|
|
"build": "npx tsc -b .",
|
|
"start": "npm run build && node dist/start.js"
|
|
},
|
|
"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",
|
|
"devDependencies": {
|
|
"@types/amqplib": "^0.8.1",
|
|
"@types/body-parser": "^1.19.0",
|
|
"@types/btoa": "^1.2.3",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/express": "^4.17.12",
|
|
"@types/fs-extra": "^9.0.12",
|
|
"@types/jsonwebtoken": "^8.5.0",
|
|
"@types/mongodb": "^3.6.9",
|
|
"@types/mongoose-autopopulate": "^0.10.1",
|
|
"@types/mongoose-lean-virtuals": "^0.5.1",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^14.17.0",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@types/uuid": "^8.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@fosscord/util": "file:../util",
|
|
"body-parser": "^1.19.0",
|
|
"btoa": "^1.2.1",
|
|
"cheerio": "^1.0.0-rc.5",
|
|
"dotenv": "^10.0.0",
|
|
"exif-be-gone": "^1.2.0",
|
|
"express": "^4.17.1",
|
|
"express-async-errors": "^3.1.1",
|
|
"file-type": "^16.5.0",
|
|
"fs-extra": "^10.0.0",
|
|
"image-size": "^1.0.0",
|
|
"jest": "^27.0.6",
|
|
"lambert-db": "^1.2.3",
|
|
"lambert-server": "^1.2.8",
|
|
"missing-native-js-functions": "^1.2.15",
|
|
"multer": "^1.4.2",
|
|
"node-fetch": "^2.6.1",
|
|
"supertest": "^6.1.6",
|
|
"typescript": "^4.1.2",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"jest": {
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/jest/setup.js"
|
|
],
|
|
"verbose": true
|
|
}
|
|
}
|