-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 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
{
"name": "butler-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node tests/main.test.js",
"dev": "nodemon rest-server/index.js",
"dbManager": "node db-manager/index.js",
"start": "node rest-server/index.js",
"test-rest": "node tests/rest-server.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.19"
},
"dependencies": {
"@espanicon/espanicon-sdk": "github:Espanicon/espanicon-sdk",
"@fidelve/colorlog": "github:FidelVe/colorLog",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0",
"is-ipfs": "^6.0.2",
"mongodb": "^4.8.0",
"mongodb-memory-server": "^8.7.2",
"mongoose": "^6.4.4",
"morgan": "^1.10.0"
}
}