forked from ory/kratos-selfservice-ui-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "@ory/kratos-selfservice-ui-node",
"version": "0.11.0-alpha.2",
"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",
"scripts": {
"build": "rm -rf lib/* && tsc",
"serve": "node lib/index.js",
"start": "nodemon",
"test": "exit 0",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ory/client": "^0.2.0-alpha.48",
"@ory/elements-markup": "^0.0.1-alpha.26",
"@ory/integrations": "^0.2.8",
"axios": "^0.27.2",
"cookie-parser": "^1.4.5",
"express": "^4.18.1",
"express-handlebars": "^5.3.4",
"express-jwt": "^7.7.5",
"express-winston": "^4.2.0",
"handlebars-helpers": "^0.10.0",
"jwks-rsa": "^2.1.4",
"winston": "^3.8.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/express-handlebars": "^5.3.1",
"@types/handlebars-helpers": "^0.5.3",
"@types/jwt-decode": "^3.1.0",
"@types/next": "^9.0.0",
"@types/node": "^16.10.5",
"license-checker": "^25.0.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"ory-prettier-styles": "1.3.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
}
}