-
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) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 808 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": "restful-api-nodejs",
"version": "1.0.0",
"description": "RESTful API AI dengan Hugging Face + Express",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node app/server.js",
"dev": "nodemon app/server.js",
"docker": "docker build -t restful-api-nodejs . && docker run -p 8000:8000 restful-api-nodejs"
},
"keywords": [
"AI",
"huggingface",
"express",
"restful",
"ngrok",
"nodejs",
"api"
],
"author": "yudibilly",
"license": "MIT",
"dependencies": {
"@huggingface/inference": "^4.4.0",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}