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

91 lines
2.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",
2021-07-08 06:57:43 -05:00
"version": "0.1.0",
2021-06-19 11:07:11 -05:00
"description": "The open source identity solution.",
"main": "build/index.js",
2021-06-06 05:30:37 -05:00
"author": "Logto",
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": {
"preinstall": "npx only-allow pnpm",
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",
"lint:report": "pnpm lint -- --format json --output-file report.json",
"dev": "rm -rf build/ && pnpm run copyfiles && tsc-watch -p tsconfig.build.json --preserveWatchOutput --onSuccess \"node ./build/index.js\"",
2021-08-20 01:53:23 -05:00
"start": "NODE_ENV=production node build/index.js",
"test": "jest",
"test:coverage": "jest --coverage --silent",
"test:report": "codecov -F core"
2021-06-06 05:30:37 -05:00
},
"dependencies": {
"@logto/phrases": "^0.1.0",
2021-07-25 09:36:22 -05:00
"@logto/schemas": "^0.1.0",
"@silverhand/essentials": "^1.1.0",
2021-06-23 12:09:42 -05:00
"dayjs": "^1.10.5",
"decamelize": "^5.0.0",
"dotenv": "^16.0.0",
"got": "^11.8.2",
"i18next": "^20.3.5",
"iconv-lite": "0.6.3",
"inquirer": "^8.2.2",
2021-07-29 04:46:28 -05:00
"jose": "^3.14.3",
2021-06-19 09:53:34 -05:00
"koa": "^2.13.1",
"koa-body": "^4.2.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",
2021-06-19 09:53:34 -05:00
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"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",
"oidc-provider": "^7.10.0",
"p-retry": "^4.6.1",
"query-string": "^7.0.1",
2021-07-04 08:55:27 -05:00
"slonik": "^23.8.3",
"slonik-interceptor-preset": "^1.2.10",
"snakecase-keys": "^5.1.0",
"zod": "^3.14.3"
2021-06-06 05:30:37 -05:00
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^3.0.8",
2022-03-31 00:55:54 -05:00
"@silverhand/eslint-config": "^0.10.2",
"@silverhand/ts-config": "^0.10.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
2021-06-06 05:30:37 -05:00
"@types/koa": "^2.13.3",
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-static": "^4.0.2",
"@types/lodash.pick": "^4.4.6",
2021-07-11 04:59:44 -05:00
"@types/node": "^16.3.1",
"@types/oidc-provider": "^7.8.0",
"@types/supertest": "^2.0.11",
"copyfiles": "^2.4.1",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"jest-matcher-specific-error": "^1.0.0",
"lint-staged": "^12.0.0",
"nock": "^13.2.2",
2021-07-23 10:10:54 -05:00
"openapi-types": "^9.1.0",
2021-07-11 04:59:44 -05:00
"prettier": "^2.3.2",
"snake-case": "^3.0.4",
"supertest": "^6.2.2",
"ts-jest": "^27.1.1",
"tsc-watch": "^5.0.0",
2022-03-11 03:30:22 -05:00
"typescript": "^4.6.2"
2021-06-19 09:53:34 -05:00
},
"engines": {
2021-07-29 04:46:28 -05:00
"node": ">=14.15.0"
2021-06-27 12:21:57 -05:00
},
2021-07-02 09:55:14 -05:00
"_moduleAliases": {
"@": "./build"
},
"eslintConfig": {
2021-09-16 03:54:32 -05:00
"extends": "@silverhand"
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc"
2021-06-06 05:30:37 -05:00
}