-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 KB
/
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
40
41
42
43
44
45
46
{
"name": "pulsar",
"productName": "Pulsar",
"version": "0.9.3",
"description": "A tiny nodejs server to monitor your server's performance live.",
"main": "index.js",
"scripts": {
"test": "mocha --exit",
"start": "node index.js",
"start_dev": "NODE_ENV=development node index.js"
},
"keywords": [
"nodejs",
"pulsar",
"performance",
"monitor",
"slashboard"
],
"author": {
"name": "BSoDium",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"accesscontrol": "^2.2.1",
"async": "^3.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"compression": "^1.7.4",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.16",
"mongoose-diff-history": "^2.1.0",
"node-disk-info": "^1.3.0",
"os-utils": "^0.0.14"
},
"devDependencies": {
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"supertest": "^6.1.4"
}
}