-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "lab-node-working-with-organizations",
"version": "1.1.2",
"description": "A set of example applications for that rely on the Auth0 VSCode Extension.",
"license": "MIT",
"author": "Auth0",
"bugs": {
"url": "https://github.com/auth0-training/labs-node-working-with-organizations/issues"
},
"homepage": "https://github.com/auth0-training/labs-node-working-with-organizations#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-training/labs-node-working-with-organizations.git"
},
"scripts": {
"init": "concurrently \"npm:init:dependencies\"",
"init:dependencies": "concurrently \"npm:api:dependencies\" \"npm:spa:dependencies\"",
"api:start": "npm start --prefix ./src/api",
"api:dependencies": "npm install --prefix ./src/api",
"spa:start": "npm run dev --prefix ./src/spa-app",
"spa:build": "npm run build --prefix ./src/spa-app",
"spa:dependencies": "npm install --prefix ./src/spa-app"
},
"keywords": [
"auth0",
"oauth2",
"openid",
"oidc",
"auth",
"authentication",
"samples",
"tools",
"labs"
],
"dependencies": {
"concurrently": "7.3.0",
"eslint": "8.21.0",
"prettier": "2.7.1"
}
}