generated from auth0-training/labs-node-template
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "lab-node-working-with-apis",
"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-apis/issues"
},
"homepage": "https://github.com/auth0-training/labs-node-working-with-apis#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-training/labs-node-working-with-apis.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"
},
"keywords": [
"auth0",
"oauth2",
"authorization",
"samples",
"tools",
"labs"
],
"dependencies": {
"concurrently": "^7.3.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1"
}
}