1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
"name": "@fosscord/cdn",
"version": "1.0.0",
"description": "cdn for fosscord",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"test": "npm run build && npx jest --coverage ./tests",
"build": "npx tsc -p .",
"start": "node dist/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosscord/fosscord-server.git"
},
"keywords": [],
"author": "Fosscord",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/fosscord/fosscord-server/issues"
},
"homepage": "https://github.com/fosscord/fosscord-server#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/multer": "^1.4.7",
"@types/node": "^18.6.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.137.0",
"@fosscord/util": "file:../util",
"@types/node-fetch": "^2.6.2",
"body-parser": "^1.19.0",
"dotenv": "^16.0.1",
"exif-be-gone": "^1.3.0",
"express": "^4.17.1",
"file-type": "16.5",
"image-size": "^1.0.0",
"jest": "^28.1.3",
"lambert-server": "^1.2.12",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"picocolors": "^1.0.0",
"supertest": "^6.1.6",
"typescript": "^4.1.2"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest/setup.js"
],
"verbose": true
}
}
|