forked from LoganHeinzelman/image-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 768 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
{
"name": "image-server",
"version": "1.0.0",
"description": "A Typescript image server using express",
"main": "app.js",
"scripts": {
"test": "eslint src",
"lint": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrJacz/image-server.git"
},
"author": "Jacz",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrJacz/image-server/issues"
},
"homepage": "https://github.com/MrJacz/image-server#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"morgan": "^1.9.1",
"multer": "^1.4.1"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1"
}
}