forked from kaloraat/nodeapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 770 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 770 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
{
"name": "nodeapi",
"version": "1.0.0",
"description": "A Node Js API",
"main": "app.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon app.js"
},
"keywords": [
"node",
"api"
],
"author": "Ryan Dhungel",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.1",
"formidable": "^1.2.1",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.3",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.9.1",
"nodemailer": "^5.1.1",
"nodemon": "^1.18.9",
"uuid": "^3.3.2"
}
}