0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/core/package.json

124 lines
3.6 KiB
JSON
Raw Normal View History

2021-06-06 05:30:37 -05:00
{
2021-07-25 09:28:42 -05:00
"name": "@logto/core",
2022-09-28 09:30:24 -05:00
"version": "1.0.0-beta.10",
2021-06-19 11:07:11 -05:00
"description": "The open source identity solution.",
"main": "build/index.js",
2022-04-24 22:26:41 -05:00
"author": "Silverhand Inc. <contact@silverhand.io>",
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2021-06-19 11:07:11 -05:00
"private": true,
2021-06-06 05:30:37 -05:00
"scripts": {
2021-07-25 09:27:51 -05:00
"precommit": "lint-staged",
"copyfiles": "copyfiles -u 1 src/**/*.md build",
"build": "rm -rf build/ && tsc -p tsconfig.build.json && pnpm run copyfiles",
"lint": "eslint --ext .ts src",
2022-05-05 05:26:30 -05:00
"lint:report": "pnpm lint --format json --output-file report.json",
"dev": "rm -rf build/ && pnpm run copyfiles && nodemon",
2021-08-20 01:53:23 -05:00
"start": "NODE_ENV=production node build/index.js",
"add-connector": "node build/cli/add-connector.js",
"add-official-connectors": "node build/cli/add-official-connectors.js",
2022-10-07 11:32:15 -05:00
"alteration": "logto db alt",
"cli": "logto",
"test": "jest",
2022-10-06 04:34:21 -05:00
"test:ci": "jest --coverage --silent",
"test:report": "codecov -F core"
2021-06-06 05:30:37 -05:00
},
"dependencies": {
"@logto/cli": "^1.0.0-beta.10",
2022-09-19 04:16:19 -05:00
"@logto/connector-kit": "^1.0.0-beta.13",
"@logto/core-kit": "^1.0.0-beta.16",
"@logto/language-kit": "^1.0.0-beta.16",
2022-09-28 09:30:24 -05:00
"@logto/phrases": "^1.0.0-beta.10",
"@logto/phrases-ui": "^1.0.0-beta.10",
2022-09-28 09:30:24 -05:00
"@logto/schemas": "^1.0.0-beta.10",
"@silverhand/essentials": "^1.2.1",
2022-04-26 01:07:28 -05:00
"chalk": "^4",
"clean-deep": "^3.4.0",
2021-06-23 12:09:42 -05:00
"dayjs": "^1.10.5",
"debug": "^4.3.4",
"decamelize": "^5.0.0",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.0",
"etag": "^1.8.1",
"fs-extra": "^10.1.0",
"got": "^11.8.2",
"hash-wasm": "^4.9.0",
2022-08-05 11:47:58 -05:00
"i18next": "^21.8.16",
"iconv-lite": "0.6.3",
"inquirer": "^8.2.2",
"jose": "^4.0.0",
"js-yaml": "^4.1.0",
2021-06-19 09:53:34 -05:00
"koa": "^2.13.1",
"koa-body": "^5.0.0",
"koa-compose": "^4.1.0",
2021-06-25 12:39:02 -05:00
"koa-logger": "^3.2.1",
2021-06-19 09:53:34 -05:00
"koa-mount": "^4.0.0",
2021-07-04 02:01:02 -05:00
"koa-proxies": "^0.12.1",
"koa-router": "^12.0.0",
"koa-send": "^5.0.1",
"lodash.pick": "^4.4.0",
2021-07-02 09:55:14 -05:00
"module-alias": "^2.2.2",
2021-07-04 04:41:46 -05:00
"nanoid": "^3.1.23",
2022-06-29 21:44:09 -05:00
"oidc-provider": "^7.11.3",
"p-retry": "^4.6.1",
"query-string": "^7.0.1",
"rimraf": "^3.0.2",
2022-04-26 01:07:28 -05:00
"roarr": "^7.11.0",
"slonik": "^30.0.0",
"slonik-interceptor-preset": "^1.2.10",
2022-04-26 01:07:28 -05:00
"slonik-sql-tag-raw": "^1.1.4",
"snake-case": "^3.0.4",
"snakecase-keys": "^5.1.0",
"tar": "^6.1.11",
"zod": "^3.18.0"
2021-06-06 05:30:37 -05:00
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^5.0.0",
"@silverhand/eslint-config": "1.0.0",
"@silverhand/jest-config": "1.0.0",
"@silverhand/ts-config": "1.0.0",
"@types/debug": "^4.1.7",
"@types/etag": "^1.8.1",
"@types/fs-extra": "^9.0.13",
"@types/http-errors": "^1.8.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.6",
"@types/js-yaml": "^4.0.5",
2021-06-06 05:30:37 -05:00
"@types/koa": "^2.13.3",
"@types/koa-compose": "^3.2.5",
2021-06-25 12:39:02 -05:00
"@types/koa-logger": "^3.1.1",
2021-06-19 09:53:34 -05:00
"@types/koa-mount": "^4.0.0",
"@types/koa-send": "^4.1.3",
"@types/lodash.pick": "^4.4.6",
2021-07-11 04:59:44 -05:00
"@types/node": "^16.3.1",
2022-06-29 21:44:09 -05:00
"@types/oidc-provider": "^7.11.1",
"@types/rimraf": "^3.0.2",
"@types/supertest": "^2.0.11",
"@types/tar": "^6.1.2",
"copyfiles": "^2.4.1",
"eslint": "^8.21.0",
"http-errors": "^1.6.3",
"jest": "^28.1.3",
"jest-matcher-specific-error": "^1.0.0",
"lint-staged": "^13.0.0",
"nock": "^13.2.2",
"nodemon": "^2.0.19",
"openapi-types": "^12.0.0",
"prettier": "^2.7.1",
"supertest": "^6.2.2",
"typescript": "^4.7.4"
2021-06-19 09:53:34 -05:00
},
"engines": {
2022-04-23 20:50:59 -05:00
"node": "^16.0.0"
2021-06-27 12:21:57 -05:00
},
2021-07-02 09:55:14 -05:00
"_moduleAliases": {
"@": "./build"
},
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"complexity": "off"
}
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc"
2021-06-06 05:30:37 -05:00
}