mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-10 15:58:27 +00:00
53 lines
2.1 KiB
JSON
53 lines
2.1 KiB
JSON
{
|
|
"name": "lowcode-engine-repo",
|
|
"private": true,
|
|
"scripts": {
|
|
"playground": "pnpm --filter playground dev",
|
|
"test": "pnpm -r test",
|
|
"build": "pnpm -r build",
|
|
"clean": "rimraf ./packages/*/dist",
|
|
"clean:lib": "rimraf ./node_modules ./packages/*/node_modules",
|
|
"lint": "f2elint scan -q -i ./packages/*/src",
|
|
"lint:fix": "f2elint fix -i ./packages/*/src",
|
|
"pub": "npm run watchdog:build && lerna publish patch --yes --force-publish --exact --no-changelog",
|
|
"pub:minor": "npm run watchdog:build && lerna publish minor --yes --force-publish --exact --no-changelog",
|
|
"pub:major": "npm run watchdog:build && lerna publish major --yes --force-publish --exact --no-changelog",
|
|
"pub:premajor": "npm run watchdog:build && lerna publish premajor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:preminor": "npm run watchdog:build && lerna publish preminor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:prepatch": "npm run watchdog:build && lerna publish prepatch --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:prerelease": "npm run watchdog:build && lerna publish prerelease --yes --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"syncOss": "node ./scripts/sync-oss.js"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "f2elint commit-file-scan",
|
|
"commit-msg": "f2elint commit-msg-scan"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@alilc/build-plugin-lce": "^0.0.5",
|
|
"@alilc/lowcode-test-mate": "^1.0.1",
|
|
"@changesets/cli": "^2.27.1",
|
|
"@microsoft/api-extractor": "^7.43.0",
|
|
"@types/node": "^20.11.30",
|
|
"@types/react-router": "5.1.18",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"babel-jest": "^26.5.2",
|
|
"del": "^6.1.1",
|
|
"execa": "^8.0.1",
|
|
"f2elint": "^4.2.1",
|
|
"gulp": "^4.0.2",
|
|
"husky": "^9.0.11",
|
|
"typescript": "^5.4.2",
|
|
"prettier": "^3.2.5",
|
|
"rimraf": "^5.0.2",
|
|
"rollup": "^4.13.0",
|
|
"vite": "^5.1.6",
|
|
"vitest": "^1.3.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": "git@github.com:alibaba/lowcode-engine.git"
|
|
}
|