-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1009 Bytes
/
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
{
"name": "images-proxy",
"description": "A simple express service using sharp and zod to validate and transform images from a url",
"version": "1.0.0",
"main": "dist/server.js",
"author": {
"name": "Vitor Lach",
"email": "contact@vitorlach.dev",
"url": "https://vitorlach.dev"
},
"scripts": {
"build": "tsup src",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"colors": "1.4.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"sharp": "^0.32.1",
"zod": "^3.21.4"
}
}