-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.9 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
{
"name": "@medialit/core",
"version": "0.0.24",
"private": true,
"description": "The core service for managing uploads, users and tying everthing together",
"author": {
"name": "The CodeLit Team",
"email": "hi@rajatsaxena.dev"
},
"homepage": "https://github.com/codelitdev/cloud-upload-service#readme",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codelitdev/cloud-upload-service.git"
},
"bugs": {
"url": "https://github.com/codelitdev/cloud-upload-service/issues"
},
"scripts": {
"build": "tsc",
"dev": "nodemon lib/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.55.0",
"@aws-sdk/s3-request-presigner": "^3.55.0",
"@medialit/images": "^0.0.24",
"@medialit/thumbnail": "^0.0.24",
"aws-sdk": "^2.1099.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.11.3",
"nanoid": "^3.3.2",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-magic-link": "^2.1.0",
"pino": "^7.9.1",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/pug": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}