-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "thumbnail",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "npx tsc && nodemon src/server.ts",
"dev-worker": "npx tsc && node dist/worker.js",
"start": "node dist/server.js",
"worker": "node dist/worker.js",
"tsc": "npx tsc",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bull": "^4.10.4",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"multer": "^1.4.5-lts.1",
"redis": "^4.6.7",
"sharp": "^0.32.1"
},
"devDependencies": {
"@types/bull": "^4.10.0",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.5",
"@types/sharp": "^0.32.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}