-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 850 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
{
"name": "node-mail-list-manager",
"version": "1.0.0",
"description": "A Node.js API for managing an email subscriber list.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibrahimpg/node-mail-list-manager.git"
},
"author": "Ibrahim P.G.",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibrahimpg/node-mail-list-manager/issues"
},
"homepage": "https://github.com/ibrahimpg/node-mail-list-manager#readme",
"dependencies": {
"cors": "2.8.5",
"express": "4.16.4",
"mongodb": "3.6.2",
"nodemailer": ">=6.4.16"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}