-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.5 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
60
61
62
63
64
65
{
"name": "sample-appointment-reminders-node",
"version": "1.0.0",
"private": true,
"main": "./app.js",
"scripts": {
"start": "node .",
"setup": "configure-env",
"pretest": "cross-env NODE_ENV=test",
"test": "eslint . && mocha test",
"dev": "nodemon ."
},
"description": "Node implementation of Appointment Reminders",
"author": {
"name": "Twilio",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/sample-appointment-reminders-node"
},
"keywords": [
"node",
"appointment reminders",
"twilio",
"express",
"sms",
"notification"
],
"engines": {
"node": ">=8.x"
},
"dependencies": {
"body-parser": "^1.19.0",
"configure-env": "^1.0.0",
"cookie-parser": "~1.4.3",
"cron": "^1.1.0",
"debug": ">=2.6.9",
"dotenv-safe": "^4.0.4",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.0",
"morgan": "^1.9.1",
"npm": "^6.13.4",
"pug": "^2.0.0-beta.12",
"serve-favicon": "^2.5.0",
"twilio": "^3.37.1"
},
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^0.22.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",
"proxyquire": "^1.7.10",
"supertest": "^2.0.1"
}
}