-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
46
47
48
49
50
{
"name": "nodejs-token-validation",
"version": "1.0.0",
"description": "Token creation and validation app in NodeJS (Express). Basic authentication with Passport.",
"author": "iamdave86 (https://github.com/iamdave86)",
"repository": "https://github.com/iamdave86/nodejs-token-validation",
"scripts": {
"start": "node index",
"watch": "nodemon index"
},
"keywords": [
"node",
"nodejs",
"express",
"expressjs",
"mongodb",
"mongoose",
"passport",
"passportjs"
],
"author": "David Bodrogi",
"license": "MIT",
"bugs": {
"url": "https://github.com/daveedx/nodejs-token-validation/issues"
},
"homepage": "https://github.com/daveedx/nodejs-token-validation#readme",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.2.9",
"morgan": "^1.9.0",
"nodemon": "^1.18.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "^2.0.3",
"rand-token": "^0.4.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}