-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "searchable-image-database-nodejs",
"version": "2.7.0",
"description": "CRIC Searchable Image Database is a public cervical cell image database aiming supporting cervical cancer analysis of Pap smear.",
"keywords": [
"cervical cell",
"Pap smear"
],
"homepage": "https://github.com/CRICDatabase/searchable-image-database-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/CRICDatabase/searchable-image-database-nodejs.git"
},
"bugs": {
"url": "https://github.com/CRICDatabase/searchable-image-database-nodejs/issues"
},
"author": "CRIC",
"contributors": [
"Fagner de Oliveira Bernardo <[email protected]>",
"Raniere Silva <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"fix": "eslint --fix --fix-type layout src",
"test": "jest --forceExit",
"dev": "nodemon ./src/server.js",
"start": "node ./src/server.js"
},
"dependencies": {
"config": "^3.3.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"express-zip": "^3.0.0",
"http-status-codes": "^1.4.0",
"jimp": "^0.9.8",
"jszip": "^3.4.0",
"md5": "^2.2.1",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.6",
"sequelize": "^5.21.7",
"sequelize-cli": "^5.5.1",
"validator": "^13.1.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^26.0.1",
"nodemon": "^2.0.3",
"proxyquire": "^2.1.3",
"sequelize-mock": "^0.10.2",
"supertest": "^4.0.2"
}
}