-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 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
{
"name": "fh-sync-server",
"version": "1.0.0",
"description": "Server with routes that expose the fh-sync module",
"scripts": {
"start": "SERVER_PORT=3000 node app.js",
"prestartdev": "npm run startservices",
"startdev": "npm start",
"startservices": "./scripts/start_services.sh",
"stopservices": "./scripts/stop_services.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "semistandard --fix ./*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feedhenry/fh-sync-server.git"
},
"keywords": [
"sync",
"fh-sync"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/feedhenry/fh-sync-server/issues"
},
"homepage": "https://github.com/feedhenry/fh-sync-server#readme",
"dependencies": {
"async": "^2.5.0",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.3",
"express-session": "^1.15.5",
"fh-sync": "^1.0.12",
"keycloak-connect": "^3.3.0-cr.1",
"prom-client": "^10.2.2"
},
"devDependencies": {
"semistandard": "^11.0.0"
}
}