forked from chambo-e/HomeComix-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 861 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 861 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
32
33
34
35
36
{
"name": "HomeComix-API",
"version": "1.0.0",
"description": "A secure RESTful API built to power the HomeComix iOS app",
"main": "server.js",
"repository": "https://github.com/TommyStarK/HomeComix-API",
"author": "Tommy <thomas.milox@epitech.eu>",
"license": "MIT",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"start": "node server.js"
},
"dependencies": {
"async": "^2.6.0",
"async-mkdirp": "^1.2.0",
"body-parser": "^1.18.2",
"comic-info": "^0.0.4",
"cross-unzip": "^0.2.1",
"crypto": "^1.0.1",
"express": "^4.16.1",
"jsonwebtoken": "^8.1.0",
"jwt-simple": "^0.5.1",
"mongodb": "^2.2.33",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"node-unrar": "^0.1.5",
"sleep": "^5.1.1"
},
"engines": {
"node": "^8"
},
"devDependencies": {
"xo": "^0.18.2"
}
}