0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/packages/core/package.json

38 lines
910 B
JSON
Raw Normal View History

2021-06-06 18:30:37 +08:00
{
2021-06-20 00:07:11 +08:00
"name": "logto",
2021-06-06 18:30:37 +08:00
"version": "1.0.0",
2021-06-20 00:07:11 +08:00
"description": "The open source identity solution.",
"main": "build/index.js",
2021-06-06 18:30:37 +08:00
"author": "Logto",
2021-06-20 00:07:11 +08:00
"license": "UNLICENSED",
"private": true,
2021-06-06 18:30:37 +08:00
"scripts": {
"build": "tsc",
"lint": "xo src/",
"dev": "tsc-watch --onSuccess \"node ./build/index.js\""
},
"dependencies": {
2021-06-24 01:09:42 +08:00
"dayjs": "^1.10.5",
2021-06-19 22:53:34 +08:00
"koa": "^2.13.1",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
2021-06-24 01:09:42 +08:00
"oidc-provider": "^7.4.1",
"slonik": "23.6.3",
"slonik-interceptor-field-name-transformation": "^1.5.3",
"slonik-interceptor-query-normalisation": "^1.1.10"
2021-06-06 18:30:37 +08:00
},
"devDependencies": {
"@types/koa": "^2.13.3",
2021-06-19 22:53:34 +08:00
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.2",
"@types/oidc-provider": "^7.4.0",
2021-06-06 18:30:37 +08:00
"tsc-watch": "^4.4.0",
"typescript": "^4.3.2",
"xo": "0.39.1"
2021-06-19 22:53:34 +08:00
},
"engines": {
2021-06-19 23:36:40 +08:00
"node": "14",
"yarn": "1"
2021-06-06 18:30:37 +08:00
}
}