forked from fela98/firebird-rest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "firebird-rest-pool",
"version": "0.0.2",
"description": "REST Server for FirebirdSQL",
"main": "./src/main.js",
"bin": {
"firebird-rest-pool": "./src/main.js"
},
"keywords": [
"firebird",
"sql",
"database",
"db",
"http",
"json",
"rest",
"api",
"node"
],
"author": "Marin Vitlov <[email protected]> (https://github.com/mvitlov/)",
"license": "MIT",
"scripts": {
"install-watchdog": "pm2 install ma-zal/pm2-watchdog",
"config-watchdog": "pm2 set pm2-watchdog:url-firebird-rest http://127.0.0.1:4243/health",
"setup-watchdog": "npm run install-watchdog && npm run config-watchdog",
"postinstall": "npm run setup-watchdog",
"start": "pm2 start",
"install-windows-service": "winser -i",
"uninstall-windows-service": "winser -r"
},
"dependencies": {
"buffer-json": "^2.0.0",
"dayjs": "^1.8.15",
"dotenv": "^16.0.1",
"exit-hook": "^2.2.1",
"fastify": "^2.14.0",
"flags": "^0.1.3",
"moment": "^2.29.0",
"node-firebird": "git+https://[email protected]/Finexa/node-firebird.git#f22e9b7",
"winser": "^1.0.3"
}
}