-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "heimdall",
"version": "0.1.0",
"description": "Implicit OpenID Connect (OIDC) and OAuth 2.0 Provider with opinionated identity management",
"repository": {
"type": "git",
"url": "git+https://github.com/onatm/heimdall.git"
},
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=debug nodemon --exec babel-node src/index.js -- --config examples/config.yaml",
"build": "babel src -d dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"keywords": [
"oidc",
"oauth2"
],
"author": "onatm",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "7.4.4",
"@panva/jose": "1.6.1",
"axios": "0.21.2",
"client-oauth2": "4.2.5",
"command-line-args": "5.1.1",
"cookie-session": "1.3.3",
"cors": "2.8.5",
"express": "4.17.1",
"express-react-views": "0.11.0",
"helmet": "3.21.0",
"js-yaml": "3.13.1",
"mongoose": "5.7.5",
"morgan": "1.9.1",
"nanoid": "3.1.31",
"oidc-token-hash": "3.0.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/node": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-eslint": "10.0.2",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.14.3",
"nodemon": "1.19.1"
}
}