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

46 lines
1.1 KiB
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": {
"@logto/essentials": "^1.0.5",
"@logto/schemas": "^1.0.1",
2021-06-24 01:09:42 +08:00
"dayjs": "^1.10.5",
2021-06-26 01:39:02 +08:00
"dotenv": "^10.0.0",
2021-06-19 22:53:34 +08:00
"koa": "^2.13.1",
2021-06-26 01:39:02 +08:00
"koa-logger": "^3.2.1",
2021-06-19 22:53:34 +08:00
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
2021-06-24 01:09:42 +08:00
"oidc-provider": "^7.4.1",
2021-06-27 20:44:05 +08:00
"slonik": "^23.8.1",
2021-06-26 01:39:02 +08:00
"slonik-interceptor-preset": "^1.2.10"
2021-06-06 18:30:37 +08:00
},
"devDependencies": {
2021-06-30 23:08:44 +08:00
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
2021-06-06 18:30:37 +08:00
"@types/koa": "^2.13.3",
2021-06-26 01:39:02 +08:00
"@types/koa-logger": "^3.1.1",
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-30 23:08:44 +08:00
"husky": "^6.0.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-28 01:21:57 +08:00
},
"prettier": "@logto/essentials/.prettierrc.json"
2021-06-06 18:30:37 +08:00
}