forked from dlozlla/auth0-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "auth0-webapp",
"version": "1.0.0",
"description": "An example web-app hat uses Auth0 Open ID Connect capabilites to authenticate users and get their permission to consume an API.",
"license": "MIT",
"author": "dlozlla",
"bugs": {
"url": "https://github.com/dlozlla/auth0-webapp/issues"
},
"homepage": "https://github.com/dlozlla/auth0-webapp#readme",
"repository": {
"type": "git",
"url": "git@github.com:dlozlla/auth0-webapp.git"
},
"scripts": {
"init": "concurrently \"npm:init:dependencies\"",
"init:dependencies": "concurrently \"npm:api:dependencies\" \"npm:web-app:dependencies\"",
"api:start": "npm start --prefix ./src/api",
"api:dependencies": "npm install --prefix ./src/api",
"web-app:start": "npm start --prefix ./src/web-app",
"web-app:dependencies": "npm install --prefix ./src/web-app",
"postinstall": "npm run api:dependencies && npm run web-app:dependencies"
},
"keywords": [
"auth0",
"oauth2",
"authorization",
"samples",
"tools",
"labs"
],
"dependencies": {
"concurrently": "^6.3.0",
"eslint": "^8.0.1",
"prettier": "^2.4.1",
"dotenv": "10.0.0"
}
}