-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.22 KB
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
{
"name": "authorization-server",
"version": "1.0.0",
"description": "OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect",
"homepage": "https://github.com/UserOfficeProject/user-office-development-authorization-server",
"repository": "https://github.com/UserOfficeProject/user-office-development-authorization-server",
"license": "LICENSE",
"author": "SWAP",
"scripts": {
"start": "node ./src/index.js",
"debug": "node --inspect ./src/index.js",
"lint": "eslint . --ext .js --quiet"
},
"dependencies": {
"body-parser": "^1.20.2",
"debug": "^4.3.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"helmet": "^6.1.5",
"knex": "^2.5.1",
"lodash": "^4.17.21",
"nanoid": "^3.3.6",
"oauth2-server": "^3.1.1",
"oidc-provider": "^7.10.6",
"pg": "^8.11.3"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}