-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 924 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
37
38
39
{
"name": "aquaflo-ivr",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "NODE_ENV=development && node index.js",
"prod": "NODE_ENV=production && node index.js",
"test": "NODE_ENV=test && ./node_modules/.bin/eslint . && ./node_modules/.bin/jest"
},
"description": "IVR backend",
"author": {
"name": "Team Aquaflo"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/water-those/ivr"
},
"engines": {
"node": ">=6.x"
},
"dependencies": {
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.3.2",
"express": "~4.14.0",
"firebase-admin": "^10.0.2",
"jade": "~1.11.0",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.2",
"stylus": "0.54.5",
"twilio": "^3.0.0-rc.17"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"jest": "^19.0.2"
}
}