-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 880 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 880 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": "node-auth",
"version": "1.0.0",
"description": "Example authentication app with jwt",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index",
"start": "cross-env NODE_ENV=production node index",
"test": "cross-env NODE_ENV=test"
},
"keywords": [
"node",
"express",
"jwt",
"mongodb"
],
"author": "Gustavo Morales <gustavo.morales@gmail.com>",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"winston": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^1.17.5"
}
}