-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 800 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
{
"name": "imgsrv",
"version": "1.0.0",
"description": "A proxy server which optimizes images",
"main": "./server.js",
"scripts": {
"start": "node server.js",
"debug": "nodemon --legacy-watch --watch ./ --inspect=0.0.0.0:9222 --nolazy ./server.js",
"docker:debug": "docker-compose up debug",
"docker": "docker-compose up web",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "laban@eilers.com",
"license": "ISC",
"repository": "https://github.com/labaneilers/imgsrv",
"dependencies": {
"await-stream-ready": "^1.0.1",
"express": "^4.16.3",
"express-http-context": "^1.0.4",
"newrelic": "^4.8.1",
"request": "^2.87.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.2.0",
"nodemon": "^1.17.5"
}
}