-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "hydra-login-consent-logout",
"version": "0.0.0",
"bin": {
"hydra-login-consent-logout": "lib/app.js"
},
"files": [
"lib",
"views"
],
"scripts": {
"build": "tsc",
"serve": "node lib/app.js",
"start": "ts-node-dev --watch public,views --respawn src/app.ts",
"test": "npm-run-all build",
"prepublishOnly": "tsc"
},
"prettier": "ory-prettier-styles",
"dependencies": {
"@ory/client": "^0.2.0-alpha.24",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.9.36",
"@types/express": "^4.17.7",
"@types/morgan": "^1.9.1",
"@types/url-join": "^4.0.0",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"debug": "^4.1.1",
"express": "^4.21.2",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"pug": "^2.0.4",
"querystring": "^0.2.0",
"serve-favicon": "^2.5.0",
"typescript": "^3.7.5",
"url-join": "^4.0.1"
},
"devDependencies": {
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"ory-prettier-styles": "1.3.0",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
"ts-node-dev": "^1.0.0-pre.43"
}
}