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

33 lines
756 B
JSON
Raw Normal View History

2021-07-25 17:39:17 +08:00
{
"name": "root",
"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",
2021-07-25 22:27:51 +08:00
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
2021-08-12 19:39:57 +08:00
"prepare": "if test \"$NODE_ENV\" != \"production\" ; then husky install && lerna run --stream prepack ; fi",
"dev": "lerna --scope=@logto/{core,ui} exec -- pnpm dev"
2021-07-25 22:27:51 +08:00
},
2021-07-25 17:39:17 +08:00
"devDependencies": {
2021-07-25 21:58:27 +08:00
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
2021-08-25 23:36:11 +08:00
"@commitlint/types": "^13.1.0",
2021-07-25 21:58:27 +08:00
"husky": "^7.0.1",
"lerna": "^4.0.0",
"typescript": "^4.3.5"
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"
2021-07-25 17:39:17 +08:00
}
2021-08-12 19:39:57 +08:00
}