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

40 lines
1.1 KiB
JSON
Raw Normal View History

2021-07-25 04:39:17 -05:00
{
"name": "root",
"private": true,
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2021-07-25 09:27:51 -05:00
"scripts": {
2021-07-30 09:34:15 -05:00
"preinstall": "npx only-allow pnpm",
2021-07-25 09:27:51 -05:00
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"prepare": "if test \"$NODE_ENV\" != \"production\" && test \"$CI\" != \"true\" ; then husky install ; fi",
"prepack": "lerna run --stream prepack",
2022-04-22 05:02:54 -05:00
"dev": "lerna run --stream prepack && lerna --scope=@logto/{core,ui,console} exec -- pnpm dev",
"start": "cd packages/core && node ."
2021-07-25 09:27:51 -05:00
},
2021-07-25 04:39:17 -05:00
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/types": "^13.2.0",
"husky": "^7.0.4",
2021-07-25 08:58:27 -05:00
"lerna": "^4.0.0",
2022-03-11 03:30:22 -05:00
"typescript": "^4.6.2"
2021-07-25 21:54:13 -05:00
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/module-alias"
]
},
"engines": {
"node": ">=14.15.0",
2021-07-29 04:46:28 -05:00
"pnpm": ">=6"
2022-02-18 04:11:54 -05:00
},
"alias": {
"html-parse-stringify": "html-parse-stringify/dist/html-parse-stringify.module.js",
2022-03-11 06:04:27 -05:00
"react-hook-form": "react-hook-form/dist/index.esm.mjs",
"superstruct": "superstruct/lib/index.es.js"
2021-07-25 04:39:17 -05:00
}
2021-08-12 06:39:57 -05:00
}