forked from CRICDatabase/searchable-image-database-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.36 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.36 KB
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
{
"name": "searchable-image-database-nodejs",
"version": "0.0.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 <fagner.bernardo@aluno.ufop.edu.br>",
"Raniere Silva <raniere@rgaiacs.com>"
],
"license": "UNLICENSED",
"private": true,
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/server.js",
"start": "node ./src/server.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"express-zip": "^3.0.0",
"http-status-codes": "^1.4.0",
"jimp": "^0.9.3",
"md5": "^2.2.1",
"mysql": "^2.17.1",
"mysql2": "^2.0.0",
"nodemon": "^1.19.4",
"sequelize": "^5.21.2"
},
"devDependencies": {
"sequelize-cli": "^5.5.1"
}
}