-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 KB
/
package.json
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
{
"name": "image-compressor-microservice",
"version": "1.0.0",
"type": "module",
"main": "app.js",
"scripts": {
"build": "swc src -d dist",
"start": "npm run build && node dist/app.js",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" dist/app.js",
"dev": "concurrently \"npm run watch-compile\" \"npm run watch-dev\"",
"clean": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.0",
"@types/node": "^20.12.12",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"app-root-path": "^3.1.0",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"node-cron": "^3.0.3",
"sharp": "^0.33.4",
"uuid": "^9.0.1",
"yup": "^1.4.0"
}
}