-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.4 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
54
55
56
57
58
{
"name": "auth0-authentication-api-debugger-extension",
"version": "2.1.2",
"description": "My extension for ..",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run extension:build",
"clean": "rimraf dist",
"extension:build": "a0-ext build:server ./webtask.js ./dist",
"serve:dev": "node index.js"
},
"keywords": [
"auth0",
"extension"
],
"author": "Auth0",
"license": "MIT",
"auth0-extension": {
"externals": [
"cors",
"handlebars",
"webtask-tools"
],
"excluded": [
"express-conditional-middleware"
]
},
"dependencies": {
"auth0": "2.17.0",
"auth0-extension-express-tools": "^1.1.9",
"auth0-extension-tools": "^1.3.3",
"auth0-oauth2-express": "1.2.0",
"body-parser": "^1.15.2",
"cors": "2.8.1",
"crypto": "^0.0.3",
"express": "4.14.0",
"express-jwt": "^5.1.0",
"handlebars": "^4.0.5",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.16.4",
"nconf": "^0.8.4",
"webtask-tools": "^3.1.0",
"winston": "^2.2.0"
},
"devDependencies": {
"auth0-extensions-cli": "^1.3.1",
"nodemon": "^1.11.0"
}
}