-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 820 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
{
"name": "inventory-api",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Middleware que liga o estoque do Bling v3 a chatbots de atendimento",
"author": "NerdResolve <contact@nerdresolve.com>",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/nerdresolve/InventoryAPI",
"repository": {
"type": "git",
"url": "https://github.com/nerdresolve/InventoryAPI.git"
},
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"dev": "node --watch src/main.js",
"oauth:url": "node src/bin/oauth.js",
"oauth:exchange": "node src/bin/oauth.js"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}