generated from twilio-labs/sample-template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "sample-sms-support-bot-node",
"version": "1.0.0",
"private": true,
"main": "./app.js",
"scripts": {
"start": "node .",
"setup": "configure-env",
"test": "eslint . && cross-env NODE_ENV=test mocha test",
"format": "eslint . --fix",
"dev": "nodemon ."
},
"description": "Node.js sample of a SMS bot using Twilio's autopilot.",
"author": {
"name": "Twilio",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/sample-sms-support-bot-node"
},
"keywords": [
"node",
"twilio",
"express"
],
"engines": {
"node": ">=8.x"
},
"dependencies": {
"body-parser": "^1.19.0",
"configure-env": "^1.0.0",
"cookie-parser": "~1.4.4",
"debug": ">=4.1.1",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"morgan": "^1.9.1",
"pug": "^2.0.4",
"serve-favicon": "^2.5.0",
"twilio": "^3.39.2"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"supertest": "^4.0.2"
}
}