-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 868 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
{
"name": "messenger",
"version": "0.0.1",
"description": "Send a text message to a batch of users listed in a CSV",
"private": false,
"main": "server/app.js",
"engines": {
"node": "6.11.x"
},
"scripts": {
"start": "node server/app.js",
"dev": "nodemon --watch server -e js server/app.js"
},
"license": "MIT",
"author": "Jake Peyser (https://github.com/jakepeyser)",
"repository": {
"type": "git",
"url": "https://github.com/jakepeyser/messenger"
},
"bugs": {
"url": "https://github.com/jakepeyser/messenger/issues"
},
"dependencies": {
"body-parser": "1.17.1",
"chalk": "1.1.3",
"csv-parse": "1.2.0",
"express": "4.15.2",
"morgan": "1.8.1",
"pg": "6.1.5",
"sequelize": "3.30.4",
"twilio": "2.11.1"
},
"devDependencies": {
"dotenv": "4.0.0",
"nodemon": "1.11.0"
}
}