-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@medialit/api",
"version": "0.3.0",
"private": true,
"description": "A better API to manage your files on AWS S3 compatible cloud storages",
"author": {
"name": "The CodeLit Team",
"email": "hi@codelit.dev"
},
"homepage": "https://github.com/codelitdev/medialit#readme",
"license": "AGPL-3.0-or-later",
"main": "dist/src/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codelitdev/medialit.git"
},
"bugs": {
"url": "https://github.com/codelitdev/medialit/issues"
},
"scripts": {
"build": "pnpm run swagger:generate && tsc",
"swagger:generate": "node --import tsx src/swagger-generator.ts",
"dev": "pnpm run swagger:generate && nodemon --exec 'node --env-file=.env --import tsx' src/index.ts",
"start": "node dist/src/index.js",
"test": "node --import tsx --test '**/*.test.ts'",
"test:fuzz": "uvx schemathesis run http://127.0.0.1:8000/openapi.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/cloudfront-signer": "^3.572.0",
"@aws-sdk/s3-request-presigner": "^3.922.0",
"@medialit/images": "workspace:*",
"@medialit/models": "workspace:*",
"@medialit/thumbnail": "workspace:*",
"@medialit/utils": "workspace:^0.1.0",
"@tus/file-store": "^2.0.0",
"@tus/server": "^2.3.0",
"aws-sdk": "^2.1692.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.2.0",
"express-fileupload": "^1.5.2",
"joi": "^17.6.0",
"joi-to-swagger": "^6.2.0",
"mongoose": "^8.19.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pino": "^10.1.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.20",
"@types/express-fileupload": "^1.2.2",
"@types/joi": "^17.2.3",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.14.1",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"nodemon": "^3.1.10",
"swagger-autogen": "^2.23.7",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}