forked from auth0-training/labs-node-working-with-tenants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 955 Bytes
/
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
{
"name": "lab-node-template",
"version": "1.1.2",
"description": "An auth0 training lab template",
"license": "MIT",
"author": "Auth0",
"bugs": {
"url": "https://github.com/auth0-training/labs-node-template/issues"
},
"homepage": "https://github.com/auth0-training/labs-node-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-training/labs-node-template.git"
},
"scripts": {},
"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
}
}