-
-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@ory/kratos-selfservice-ui-node",
"version": "0.23.10",
"description": "A reference implementation of a selfservice UI for ORY Kratos in node.js",
"homepage": "https://github.com/ory/kratos-selfservice-ui-node#readme",
"bugs": {
"url": "https://github.com/ory/kratos-selfservice-ui-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ory/kratos-selfservice-ui-node.git"
},
"license": "Apache-2.0",
"author": "Aeneas Rekkas",
"main": "src/index.ts",
"files": [
"lib/*",
"views/*"
],
"scripts": {
"build": "rm -rf lib/* && npx tsc",
"serve": "node lib/index.js",
"start": "nodemon",
"test": "exit 0",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"prettier": {
"proseWrap": "always",
"semi": false,
"trailingComma": "all"
},
"dependencies": {
"@ory/client": "1.22.26",
"@ory/elements-markup": "0.9.0",
"@redtea/format-axios-error": "2.1.1",
"accept-language-parser": "1.5.0",
"axios": "1.15.0",
"body-parser": "1.20.4",
"cookie-parser": "1.4.7",
"csrf-csrf": "3.0.1",
"express": "4.22.1",
"express-handlebars": "8.0.7",
"express-jwt": "8.4.1",
"express-winston": "4.2.0",
"jwks-rsa": "3.0.1",
"winston": "3.19.0"
},
"devDependencies": {
"@types/accept-language-parser": "1.5.8",
"@types/body-parser": "1.19.2",
"@types/cookie-parser": "1.4.3",
"@types/express": "4.17.21",
"@types/express-handlebars": "6.0.2",
"@types/handlebars-helpers": "0.5.6",
"@types/jwt-decode": "3.1.0",
"@types/node": "18.16.19",
"license-checker": "25.0.1",
"nodemon": "3.1.14",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"overrides": {
"express-winston": {
"lodash": "4.18.1"
}
},
"engines": {
"node": ">=18",
"npm": ">=8.11.0"
}
}