-
-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
69 lines (69 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@ory/kratos-selfservice-ui-node",
"version": "0.21.3",
"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/* && tsc",
"serve": "node lib/index.js",
"start": "nodemon",
"test": "exit 0",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"prettier": "ory-prettier-styles",
"dependencies": {
"@ory/client": "1.14.3",
"@ory/elements-markup": "0.5.0",
"@redtea/format-axios-error": "2.1.1",
"accept-language-parser": "1.5.0",
"axios": "1.7.4",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"csrf-csrf": "3.0.1",
"express": "4.21.1",
"express-handlebars": "6.0.7",
"express-jwt": "8.4.1",
"express-winston": "4.2.0",
"jwks-rsa": "3.0.1",
"winston": "3.10.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/accept-language-parser": "1.5.3",
"@types/axios": "0.14.0",
"@types/body-parser": "1.19.2",
"@types/cookie-parser": "1.4.3",
"@types/express": "4.17.17",
"@types/express-handlebars": "6.0.0",
"@types/handlebars-helpers": "0.5.3",
"@types/jwt-decode": "3.1.0",
"@types/node": "18.16.19",
"license-checker": "25.0.1",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"ory-prettier-styles": "1.3.0",
"prettier": "2.8.3",
"prettier-plugin-packagejson": "2.4.2",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18",
"npm": ">=8.11.0"
}
}