-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 917 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
{
"name": "expenses-api-express",
"version": "1.0.0",
"description": "Auth0 Labs Sample API",
"license": "MIT",
"author": "Auth0",
"main": "api/index.js",
"bugs": {
"url": "https://github.com/auth0/auth0-product-education-labs/issues"
},
"homepage": "https://github.com/auth0/auth0-product-education-labs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/auth0-product-education-labs.git"
},
"scripts": {
"start": "PORT=$npm_package_config_expense_api_port ALLOWED_AUDIENCES=$npm_package_config_expense_api_audience node api/index"
},
"config": {
"expense_api_port": 5000,
"expense_api_audience": "https://expenses-api"
},
"keywords": [
"auth0",
"vercel",
"oauth2",
"samples",
"tools",
"labs"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-oauth2-bearer": "^0.4.0"
}
}