-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 710 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 710 Bytes
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
{
"name": "sharp-image-proxy",
"private": true,
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "nodemon --delay 1500ms --signal SIGTERM",
"build": "tsc"
},
"dependencies": {
"node-fetch": "^2.6.0",
"sharp": "0.28.1",
"express": "4.17.1"
},
"devDependencies": {
"@types/node": "14.0.1",
"@types/node-fetch": "2.5.7",
"@types/sharp": "0.28.0",
"nodemon": "2.0.4",
"ts-node": "8.10.1",
"typescript": "4.0.2",
"@types/express": "4.17.7"
},
"author": {
"name": "Adam LaCombe",
"web": "https://github.com/adamlacombe"
}
}