forked from thombergs/code-examples
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 477 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 477 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "csrfapp",
"version": "1.0.0",
"description": "CSRF mitigation example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"csrf"
],
"author": "Pratik Das",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"csurf": "^1.11.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"pug": "^3.0.2"
}
}