-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "scheduled-messages-api",
"version": "1.0.0",
"description": "An API to handle the scheduled messages received",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ana-ac/scheduled-messages-api.git"
},
"keywords": [
"node",
"API",
"mongoose",
"mongodb",
"express",
"npm",
"eslint"
],
"author": "Ana Arriaga Coll",
"license": "MIT",
"bugs": {
"url": "https://github.com/ana-ac/scheduled-messages-api/issues"
},
"homepage": "https://github.com/ana-ac/scheduled-messages-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv-safe": "^8.1.0",
"express": "^4.17.1",
"mongoose": "^5.6.10"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^1.19.1"
}
}