-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 748 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
{
"name": "dermatovisionapi",
"version": "1.0.0",
"description": "DermatoVisionAPI: An API for skin cancer detection and classification using machine learning. Seamlessly integrate dermatology-related image analysis to web application.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon ./src/server/server.js",
"start": "node ./src/server/server.js"
},
"keywords": [],
"author": "Chrystalio (Kristoff)",
"license": "ISC",
"dependencies": {
"@google-cloud/firestore": "^7.7.0",
"@hapi/hapi": "^21.3.9",
"@tensorflow/tfjs-node": "^4.19.0",
"dotenv": "^16.4.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}