-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "collage_generator",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --ext ts --exec ts-node server.ts",
"lint": "eslint src --fix",
"format": "prettier --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-s3": "^3.782.0",
"@aws-sdk/s3-request-presigner": "^3.782.0",
"axios": "^1.8.4",
"bullmq": "^5.47.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"ioredis": "^5.6.0",
"mongoose": "^8.13.1",
"multer": "^2.0.1",
"node-cron": "^3.0.3",
"sharp": "^0.34.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/multer": "^1.4.12",
"@types/node": "^22.14.0",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}