generated from auth0-training/labs-node-template
-
Notifications
You must be signed in to change notification settings - Fork 334
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "lab-node-working-with-connections",
"version": "1.1.2",
"description": "An auth0 training lab on working with connections",
"license": "MIT",
"author": "Auth0",
"bugs": {
"url": "https://github.com/auth0-training/labs-node-working-with-connections/issues"
},
"homepage": "https://github.com/auth0-training/labs-node-working-with-connections#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-training/labs-node-working-with-connections.git"
},
"scripts": {
"init": "concurrently \"npm:init:dependencies\"",
"init:dependencies": "concurrently \"npm:web-app:dependencies\"",
"web-app:start": "npm start --prefix ./src/web-app",
"web-app:dependencies": "npm install --prefix ./src/web-app"
},
"keywords": [
"auth0",
"oauth2",
"openid",
"oidc",
"auth",
"authentication",
"samples",
"labs"
],
"dependencies": {
"concurrently": "^7.3.0",
"eslint": "^8.20.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
}
}