23 lines
685 B
JSON
23 lines
685 B
JSON
{
|
|
"name": "twitter-worker",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Microservice Twitter API avec Emusks",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "node --watch src/app.js",
|
|
"test": "curl -X POST http://localhost:3000/api/twitter/call -H 'Authorization: Bearer test123' -H 'Content-Type: application/json' -d '{\"auth_token\":\"xxx\",\"domain\":\"twitter\",\"method\":\"verify\",\"args\":[]}'"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.0",
|
|
"cycletls": "^2.0.5",
|
|
"express": "^4.18.2",
|
|
"js-yaml": "^4.1.0",
|
|
"x-client-transaction-id": "^0.1.9"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1"
|
|
}
|
|
}
|