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

57 lines
1.7 KiB
JSON
Raw Normal View History

2021-07-25 04:39:17 -05:00
{
2022-04-26 01:07:28 -05:00
"name": "@logto/root",
2021-07-25 04:39:17 -05:00
"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",
"version": "pnpm i --frozen-lockfile=false && git add pnpm-lock.yaml",
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-10-06 04:34:21 -05:00
"dev": "lerna run --stream prepack -- --incremental && lerna --ignore=@logto/integration-tests run --parallel dev",
2022-05-17 21:58:01 -05:00
"start": "cd packages/core && NODE_ENV=production node . --from-root",
2022-10-10 12:20:15 -05:00
"//": "For production, use NPM instead",
"cli": "cd packages/core && npm run cli",
"//": "For production, use NPM instead",
"alteration": "cd packages/core && npm run alteration",
2022-05-17 21:58:01 -05:00
"ci:build": "lerna run --stream build",
"ci:lint": "lerna run --parallel lint",
"ci:stylelint": "lerna run --parallel stylelint",
2022-10-06 04:34:21 -05:00
"ci:test": "lerna run --parallel test:ci"
2021-07-25 09:27:51 -05:00
},
2021-07-25 04:39:17 -05:00
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/types": "^17.0.0",
"husky": "^8.0.0",
"lerna": "^5.0.0",
"typescript": "^4.7.4"
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"
2022-08-05 04:59:03 -05:00
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
2022-10-14 01:57:27 -05:00
"react": "^18.0.0",
"jest": "^29.1.2"
2022-08-05 04:59:03 -05:00
}
}
2021-07-25 04:39:17 -05:00
}
2021-08-12 06:39:57 -05:00
}