mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
365c63b2c7
* feat(core): connect console * fix(core): prod spa dist * fix(core): test * test(core): refactor spa proxy tests
35 lines
897 B
JSON
35 lines
897 B
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"license": "MPL-2.0",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"lerna": "lerna",
|
|
"bootstrap": "lerna bootstrap",
|
|
"prepare": "if test \"$NODE_ENV\" != \"production\" && test \"$CI\" != \"true\" ; then husky install ; fi",
|
|
"dev": "lerna run --stream prepack && lerna --scope=@logto/{core,ui,console} exec -- pnpm dev"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^13.2.1",
|
|
"@commitlint/config-conventional": "^13.2.0",
|
|
"@commitlint/types": "^13.2.0",
|
|
"husky": "^7.0.4",
|
|
"lerna": "^4.0.0",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
],
|
|
"nohoist": [
|
|
"**/module-alias"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=14.15.0",
|
|
"pnpm": ">=6"
|
|
},
|
|
"alias": {
|
|
"html-parse-stringify": "html-parse-stringify/dist/html-parse-stringify.module.js"
|
|
}
|
|
}
|