generated from twilio-labs/sample-template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
59
{
"name": "sample-conversations-masked-numbers",
"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": "2-way Masked Phone Number SMS Conversation",
"author": {
"name": "Twilio",
"email": "open-source@twilio.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/sample-conversations-masked-numbers"
},
"keywords": [
"node",
"twilio",
"express"
],
"engines": {
"node": ">=8.x"
},
"dependencies": {
"body-parser": "^1.19.0",
"configure-env": "^1.0.0",
"cookie-parser": "~1.4.3",
"debug": ">=2.6.9",
"dotenv-safe": "^4.0.4",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"pug": "^2.0.0-beta.12",
"serve-favicon": "^2.5.0",
"twilio": "^3.37.1"
},
"devDependencies": {
"chai": "^3.5.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"sinon": "^8.0.4",
"sinon-chai": "^3.4.0",
"supertest": "^4.0.2"
}
}