-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 809 Bytes
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
{
"name": "express-rest-api",
"version": "1.0.0",
"description": "A NodeJS Express RESTFul API Boilerplate",
"main": "server.js",
"scripts": {
"start": "nodemon src/server.js --exec babel-node"
},
"keywords": [
"node",
"express",
"rest",
"api"
],
"author": "Anuj Raval",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.4.0",
"mongoose": "^5.8.1",
"nodemon": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4"
}
}