-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "regular-web-app",
"version": "1.0.0",
"description": "OpenID Connect Handbook: Securing Regular Web Apps",
"main": "index.js",
"scripts": {
"start": "node src/server.js"
},
"keywords": [],
"author": "Bruno Krebs <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"prettier": {
"singleQuote": true
}
}