0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00
logto/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2021-07-25 17:39:17 +08:00
{
2022-04-26 14:07:28 +08:00
"name": "@logto/root",
2021-07-25 17:39:17 +08:00
"private": true,
2021-08-11 22:12:36 +08:00
"license": "MPL-2.0",
2021-07-25 22:27:51 +08:00
"scripts": {
2021-07-30 22:34:15 +08:00
"preinstall": "npx only-allow pnpm",
"prepare": "if test \"$NODE_ENV\" != \"production\" && test \"$CI\" != \"true\" ; then husky install ; fi",
2022-10-17 19:37:59 +08:00
"prepack": "pnpm -r prepack",
2022-10-18 15:40:36 +08:00
"dev": "pnpm -r prepack && pnpm start:dev",
2022-10-18 11:53:14 +08:00
"start:dev": "pnpm -r --parallel --filter=!@logto/integration-tests dev",
2022-10-16 00:49:16 +08:00
"start": "cd packages/core && NODE_ENV=production node .",
"cli": "logto",
"alteration": "logto db alt",
2022-10-17 19:37:59 +08:00
"ci:build": "pnpm -r build",
"ci:lint": "pnpm -r --parallel lint",
"ci:stylelint": "pnpm -r --parallel stylelint",
"ci:test": "pnpm -r --parallel test:ci"
2021-07-25 22:27:51 +08:00
},
2021-07-25 17:39:17 +08:00
"devDependencies": {
2022-10-21 13:59:08 +08:00
"@changesets/cli": "^2.25.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/types": "^17.0.0",
"husky": "^8.0.0",
"typescript": "^4.7.4"
2021-07-26 10:54:13 +08:00
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/module-alias"
]
},
"engines": {
"node": ">=14.15.0",
2021-07-29 17:46:28 +08:00
"pnpm": ">=6"
2022-02-18 17:11:54 +08:00
},
"alias": {
"html-parse-stringify": "html-parse-stringify/dist/html-parse-stringify.module.js",
2022-03-11 19:04:27 +08:00
"react-hook-form": "react-hook-form/dist/index.esm.mjs",
"superstruct": "superstruct/lib/index.es.js"
2022-08-05 17:59:03 +08:00
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
2022-10-14 14:57:27 +08:00
"react": "^18.0.0",
"jest": "^29.1.2"
2022-08-05 17:59:03 +08:00
}
}
2022-10-16 00:49:16 +08:00
},
"dependencies": {
"@logto/cli": "^1.0.0-beta.10"
2021-07-25 17:39:17 +08:00
}
2021-08-12 19:39:57 +08:00
}