-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 840 Bytes
/
package.json
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
37
38
39
{
"name": "logsmith-monitor",
"version": "0.1.0",
"description": "Logging Server",
"main": "app.js",
"type": "module",
"scripts": {
"test": "mocha",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanmoySG/logsmith-monitor.git"
},
"keywords": [
"logging",
"logs",
"monitor",
"server"
],
"author": "Tanmoy Sen Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/TanmoySG/logsmith-monitor/issues"
},
"homepage": "https://github.com/TanmoySG/logsmith-monitor#readme",
"dependencies": {
"chalk": "^5.0.1",
"express": "^4.17.3",
"nanoid": "^3.3.3",
"string-template": "^1.0.0"
},
"devDependencies": {
"chai": "^4.3.6",
"js-jsonl": "^1.1.1",
"mocha": "^9.2.2",
"nodemon": "^2.0.15"
}
}