-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "psqlstatsshow",
"main": "index.js",
"bin": {
"psqlstatsshow": "index.js"
},
"preferGlobal": true,
"version": "1.0.2",
"description": "Web Monitoring PostgreSQL- Tracking execution statistics of all SQL statements executed by a server.",
"author": {
"email": "[email protected]",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"admin-dashboard",
"monitor",
"monitoring-server",
"performance",
"performance-analysis",
"postgres",
"postgresql",
"server-monitor",
"server-monitoring",
"sql",
"stat",
"statements",
"statistics",
"stats"
],
"scripts": {
"start": "node index.js",
"dev": "nodemon --watch views --watch index.js --watch css --watch base -e handlebars,js,css js index.js --dev --password 1234",
"test": "xo"
},
"engines": {
"node": ">=8"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/PSQL-StatsShow.git"
},
"homepage": "https://TiagoDanin.github.io/PSQL-StatsShow",
"bugs": {
"url": "https://github.com/TiagoDanin/PSQL-StatsShow/issues"
},
"github": {
"name": "PSQL-StatsShow",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"base",
"css",
"index.js",
"package.json",
"views"
],
"dependencies": {
"body-parser": "^1.19.0",
"cookie-session": "^2.0.0-rc.1",
"express": "^4.17.1",
"express-handlebars": "5.3.2",
"handlebars-helpers": "^0.10.0",
"minimist": "^1.2.5",
"pg": "8.3.3",
"pg-native": "3.0.0",
"reload": "^3.1.1",
"uikit": "^3.6.22"
},
"devDependencies": {
"nodemon": "^2.0.7",
"xo": "0.39.1"
},
"xo": {
"rules": {
"quote-props": "warn",
"eqeqeq": "warn",
"array-callback-return": "warn",
"require-atomic-updates": "warn",
"no-else-return": "warn"
},
"semicolon": false
}
}