-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "reactive-mailbox-api",
"version": "1.0.0",
"description": "awesome reactive mailbox api",
"main": "src/server.js",
"scripts": {
"dev": "nodemon --exec babel-node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcesdan/reactive-mailbox-api.git"
},
"author": "marces",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcesdan/reactive-mailbox-api/issues"
},
"homepage": "https://github.com/marcesdan/reactive-mailbox-api#readme",
"dependencies": {
"bcrypt": "3.0.6",
"body-parser": "1.19.0",
"cookie-parser": "1.4.4",
"cors": "^2.8.5",
"express": "4.17.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"mongoose": "5.7.10",
"morgan": "1.9.1"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/node": "7.7.0",
"@babel/preset-env": "7.7.1",
"dotenv": "8.2.0",
"eslint": "6.6.0",
"nodemon": "1.19.4"
},
"engines": {
"npm": "6.12.*",
"node": "10.16.*"
}
}