-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 1008 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
32
33
34
35
36
37
{
"name": "starter-nodejs-rest",
"version": "1.0.0",
"description": "Starter for a Node.js RESTful Application using MongoDB and JSON Web Token",
"license": "MIT",
"author": "Pedro Affonso Kehl",
"repository": {
"type": "git",
"url": "https://github.com/pedrokehl/starter-nodejs-rest"
},
"scripts": {
"start": "node server",
"nodemon": "nodemon server",
"lint": "node_modules/.bin/eslint server/**/*.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"consign": "^0.1.5",
"express": "^4.15.3",
"jsonwebtoken": "^7.4.1",
"mongoose": "^4.10.5",
"nodemailer": "^2.6.4",
"secure-random": "^1.1.1",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"nodemon": "^1.11.0"
},
"main": "server/index.js"
}