mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:17:12 +00:00
883f1e6fd1
* fix: eslint * fix: eslint --fix * fix: changelog
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "nocobase",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*/*"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"licenses": [
|
|
{
|
|
"type": "Apache-2.0",
|
|
"url": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"nocobase": "nocobase",
|
|
"pm": "nocobase pm",
|
|
"dev": "nocobase dev",
|
|
"start": "nocobase start",
|
|
"build": "nocobase build",
|
|
"test": "nocobase test",
|
|
"doc": "nocobase doc",
|
|
"postinstall": "nocobase postinstall",
|
|
"lint": "eslint .",
|
|
"clean": "nocobase clean",
|
|
"changelog": "yarn changelog:root && yarn changelog:zh-CN && yarn changelog:en-US",
|
|
"changelog:root": "auto-changelog -p -t keepachangelog",
|
|
"changelog:zh-CN": "auto-changelog -p -t keepachangelog -o docs/zh-CN/welcome/release/index.md",
|
|
"changelog:en-US": "auto-changelog -p -t keepachangelog -o docs/en-US/welcome/release/index.md",
|
|
"version:alpha": "lerna version prerelease --preid alpha --force-publish=* --no-git-tag-version -m \"chore(versions): publish packages %s\"",
|
|
"release:force": "lerna publish from-package --yes",
|
|
"release": "lerna publish",
|
|
"run:example": "ts-node-dev -r dotenv/config -r tsconfig-paths/register ./examples/index.ts"
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0"
|
|
},
|
|
"config": {
|
|
"ghooks": {
|
|
"commit-msg": "commitlint --edit"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.1.0",
|
|
"@commitlint/config-conventional": "^16.0.0",
|
|
"@commitlint/prompt-cli": "^16.1.0",
|
|
"auto-changelog": "^2.4.0",
|
|
"ghooks": "^2.0.4",
|
|
"prettier": "^2.2.1",
|
|
"pretty-format": "^24.0.0",
|
|
"pretty-quick": "^3.1.0"
|
|
},
|
|
"volta": {
|
|
"node": "18.14.2",
|
|
"yarn": "1.22.19"
|
|
}
|
|
}
|