-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 946 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
32
33
34
35
36
{
"name": "surveylegend-webhook-examples",
"version": "0.1.0",
"author": "SurveyLegend AB",
"contributors": [
"Robert Michalski"
],
"keywords": [
"api",
"webhooks",
"surveylegend"
],
"scripts": {
"http": "nodemon node/http/server -x \"node -r dotenv/config -r make-promises-safe\"",
"express": "nodemon node/express/server -x \"node -r dotenv/config -r make-promises-safe\"",
"hapi": "nodemon node/hapi/server -x \"node -r dotenv/config -r make-promises-safe\"",
"test": "nodemon node/test_webhook -x \"node -r dotenv/config -r make-promises-safe\""
},
"dependencies": {
"@hapi/hapi": "^17.9.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"qs": "^6.8.0",
"xml2js": "^0.4.21"
},
"devDependencies": {
"dotenv": "^8.1.0",
"eslint": "^6.3.0",
"make-promises-safe": "^5.0.0",
"nodemon": "^1.19.1"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}