-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.28 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "auth-passport",
"version": "1.0.0",
"description": "Authenticating Node.js Applications with Passport",
"main": "app.js",
"maintainers": [
{
"name": "Stéphane Micheloud",
"web": "http://lampwww.epfl.ch/~michelou/"
}
],
"private": true,
"scripts": {
"clean": "node ./npm_scripts/clean.js",
"lint": "eslint app",
"reinstall": "npm run clean && npm install -audit",
"start": "node app/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"passport"
],
"author": "Agraj Mangal",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"express": "^4.19.2",
"express-session": "^1.18.1",
"jade": "^1.9.2",
"mongoose": "^7.8.2",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pug": "^3.0.3",
"start": "^5.1.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0"
},
"devDependencies_NOT_SUPPORTED": {
"eslint": "^9.14.0",
"eslint-plugin-promise": "^7.1.0"
},
"engines": {
"node": ">=16.20.2",
"npm": ">=9.8.1"
}
}