forked from ory/kratos-selfservice-ui-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.8 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
{
"name": "kratos-selfservice-ui-node",
"version": "0.0.1",
"description": "A reference implementation of a selfservice UI for ORY Kratos in node.js",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"serve": "node lib/index.js",
"start": "ts-node-dev --watch public,views --respawn src/index.ts",
"test": "npm-run-all build",
"format": "prettier --parser typescript --no-semi --single-quote --trailing-comma es5 --write src/**.ts",
"check-format": "prettier --parser typescript --no-semi --single-quote --trailing-comma es5 --check src/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ory/kratos-selfservice-ui-node.git"
},
"author": "Aeneas Rekkas",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ory/kratos-selfservice-ui-node/issues"
},
"homepage": "https://github.com/ory/kratos-selfservice-ui-node#readme",
"dependencies": {
"@ory/kratos-client": "^0.0.0-next.b7b69098fd89",
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.7",
"@types/express-handlebars": "0.0.33",
"@types/handlebars-helpers": "^0.5.2",
"@types/jwt-decode": "^2.2.1",
"@types/morgan": "^1.9.1",
"@types/node": "^12.12.51",
"@types/node-fetch": "^2.5.7",
"@types/url-join": "^4.0.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-jwt": "^6.0.0",
"handlebars-helpers": "^0.10.0",
"jwks-rsa": "^2.0.2",
"jwt-decode": "^2.2.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"typescript": "^3.9.7",
"url-join": "^4.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.52"
}
}