-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 933 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
42
43
44
45
46
47
{
"name": "spa-backend-auth-sample",
"version": "1.0.0",
"description": "SPA/BFF authentication sample",
"main": "app.js",
"scripts": {
"start": "node ./bin/www"
},
"keywords": [
"auth0",
"spa",
"bff",
"cookie",
"auth"
],
"author": "zulfiqar",
"license": "MIT",
"dependencies": {
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"csurf": "1.10.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.0",
"http-proxy": "1.18.0",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-auth0": "1.3.0",
"passport-custom": "1.1.0"
},
"devDependencies": {
"hiproxy": "1.3.1",
"npm-run-all": "4.1.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}