-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 902 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
{
"name": "navigator",
"version": "1.0.0",
"description": "Navigator is a server that accepts SSE connections to serve real-time feature flag updates to clients using waypost SDKs. Navigator stays up to date by recieving webhooks from the Waypost Feature Flag managment application.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-watch": "nodemon index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waypost-io/navigator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/waypost-io/navigator/issues"
},
"homepage": "https://github.com/waypost-io/navigator#readme",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^2.0.15"
}
}