-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "single-page-app-vanillajs",
"version": "1.0.0",
"description": "Auth0 Labs Sample SPA Application",
"license": "MIT",
"author": "Auth0",
"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": {
"dev": "node_modules/.bin/parcel index.html -p $npm_package_config_spa_app_port",
"build": "node_modules/.bin/parcel build index.html -d public --public-url ./",
"clean": "rm -rf .cache && rm -rf dist"
},
"config": {
"spa_app_port": 8000
},
"keywords": [
"auth0",
"vercel",
"openid",
"oidc",
"auth",
"authentication",
"samples",
"tools",
"labs"
],
"devDependencies": {
"parcel-bundler": "^1.3.1",
"envvar-allowlist": "auth0/parcel-plugin-envvar-allowlist"
},
"browserslist": [
"last 1 Chrome version"
]
}