-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
40
41
42
43
44
{
"name": "image-to-webp",
"version": "1.0.0",
"description": "provides a API to convert image(JPG, PNG) -> WEBP",
"main": "index.js",
"author": "Junho Lee",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nodemon src/index.ts",
"start": "NODE_ENV=production yarn build && NODE_ENV=production yarn server",
"server": "NODE_ENV=production node dist",
"build": "NODE_ENV=production tsc -p tsconfig.json",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . \"!test*\" --check",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"image-validator": "^1.2.1",
"log4js": "^6.3.0",
"multer": "^1.4.3",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.4",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}