-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
{
"name": "lab-node-oidc-auth-code-with-pkce-trace",
"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-oidc-auth-code-with-pkce-trace/issues"
},
"homepage": "https://github.com/auth0-training/labs-node-oidc-auth-code-with-pkce-trace#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-training/labs-node-oidc-auth-code-with-pkce-trace.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",
"labs"
],
"dependencies": {
"concurrently": "7.3.0",
"eslint": "8.21.0",
"prettier": "2.7.1"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "auto",
"quoteProps": "consistent",
"semi": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}