-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "openid-connect-app",
"version": "2.2.1",
"description": "",
"keywords": [],
"license": "MIT",
"author": "ebrahimmfadae@gmail.com",
"type": "commonjs",
"scripts": {
"compose:up": "docker compose up -d",
"compose:down": "docker compose down",
"start:api": "ts-node api/src",
"start:app": "ts-node app/src",
"start:oidc": "ts-node oidc/src",
"test": "echo \"Gandalf: You shall !not pass!\" && exit 1"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-ejs": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"mongoose": "^7.5.1",
"oidc-provider": "^7.14.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-ejs": "^4.2.4",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa__cors": "^3.0.3",
"@types/node": "^18.11.9",
"@types/oidc-provider": "^7.14.0",
"prettier": "^3.0.3"
},
"packageManager": "yarn@3.6.3"
}