-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 777 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 777 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
{
"name": "authentication-tutorial",
"version": "1.0.0",
"description": "An example application demonstrating how to properly implement authentication according to the OWASP standards",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest --coverage"
},
"author": "Mark Wardle <mwardle@robinsage.com>",
"license": "ISC",
"dependencies": {
"argon2": "^0.18.3",
"body-parser": "^1.18.2",
"connect-mongo": "^2.0.1",
"dotenv": "^5.0.1",
"ejs": "^2.5.9",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongodb": "^3.0.7",
"read-env": "^1.1.1",
"uid-generator": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-recommended": "^2.0.0",
"jest": "^22.4.3"
}
}