tachybase_todo/package.json

101 lines
3.0 KiB
JSON
Raw Normal View History

2020-10-24 15:34:43 +08:00
{
"name": "tachybase",
"version": "0.21.17",
2020-10-24 15:34:43 +08:00
"private": true,
"license": "Apache-2.0",
2020-10-24 15:34:43 +08:00
"scripts": {
"build": "tachybase build",
"build:p": "tachybase build --no-dts",
"changelog": "auto-changelog -p -t keepachangelog",
"clean": "tachybase clean",
"dev": "tachybase dev",
"dev-server": "tachybase dev --server",
"e2e": "tachybase e2e",
"preinstall": "npx only-allow pnpm",
"postinstall": "tachybase postinstall",
"lint": "eslint .",
"pm": "tachybase pm",
"pm2": "tachybase pm2",
2024-04-08 13:19:22 +08:00
"prepare": "husky",
"release": "pnpm -r exec -- npm version patch && npm version patch --no-git-tag-version && git commit -a -m 'chore(version): release '$(jq -r '.version | \"v\\(.)\"' package.json | tr -d '\"') && git tag $(jq -r '.version | \"v\\(.)\"' package.json | tr -d '\"')",
"run:example": "tsx -r dotenv/config -r tsconfig-paths/register ./examples/index.ts",
"start": "tachybase start",
"tachybase": "tachybase",
"tag": "changeset",
"tar": "tachybase tar",
"tb": "tachybase",
"tbi": "tachybase install",
"tc": "tachybase test:client",
"test": "tachybase test",
"test:client": "tachybase test:client",
"test:server": "tachybase test:server",
"ts": "tachybase test:server",
"ver": "changeset version"
},
"lint-staged": {
"*.{js,json,sql}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix"
]
},
"dependencies": {
"pm2": "^5.2.0",
"rimraf": "^3.0.0"
},
2020-10-24 15:34:43 +08:00
"devDependencies": {
"@changesets/cli": "^2.27.1",
2022-01-26 12:07:47 +08:00
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
2022-02-20 20:11:58 +08:00
"@commitlint/prompt-cli": "^16.1.0",
"@nocobase/build": "workspace:*",
"@nocobase/test": "workspace:*",
"@tachybase/cli": "workspace:*",
"@tachybase/preset-tachybase": "workspace:*",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"auto-changelog": "^2.4.0",
"axios": "^1.6.2",
"commander": "^9.2.0",
refactor(client)!: upgrade antd to v5 (#2078) * refactor: change moment to dayjs * refactor: remove antd css * refactor: change @formily/antd to @formily/antd-v5 * chore: add dep * chore: upgrade babel/core and typescript * refactor: rename moment to dayjs * fix(dayjs): add plugins * refactor: fix type errors * refactor: change default export to named export * chore: upgrade ts-loader * refactor: rename moment to dayjs * refactor: fix type errors * chore: upgrade deps for build * fix: fix build errors * fix: add antd reset css * fix: fix build error * chore: add __builtins__ * chore: optimize genStyleHook * refactor(Calendar): less to css-in-js * refactor(acl): less to css-in-js * refactor(board): less to css-in-js * chore: add antd-style * refactor(acl): use antd-style * refactor(board): use antd-style * refactor: schema-initializer * refactor: refactor genStyleHook * refactor: kanban * refactor: filter * refactor: upload * refactor: markdown * refactor: rename className to componentCls * refactor: rich-text * style: fix style * fix: fix merge error * chore: update yarn.lock * chore: upgrade formily * style: fix pageHeader * style: fix add button style * style: fix header menu color * chore: update yarn.lock * chore: upgrade deps * test: fix tests * test: fix tests * fix: fix build error * fix: fix style of plugin doc * fix: fix tests * fix: fix drag bug * refactor: remove useless code * fix: fix Modal style (T-621) * fix: fix box-shadow of subMenu (T-622) * fix: fix style of linkage rules (T-623) * fix: fix style of DataTemplate * fix: fix style of variable (T-620) * chore: update yarn.lock * fix: avoid test failed * test: fix error * chore: update yarn.lock * test: fix error * test(dayjs): fix error * fix: should delay show menu to avoid the menu not hidden * test: skip failure test * fix(mouseEnterDelay): change default value from 100 to 150 * test: avoid failed * refactor: rename component names * chore: optimize types * chore: lock antd version * fix: fix build * fix: fix build * fix: layout bg color use variable * fix: fix style of buttons * feat: remove theme config * fix(calendar): fix style * fix(mobile-client): fix dialog style * fix: fix test * refactor: make code gooder * chore: change code * fix: fix T-847 * fix: fix T-845 * fix: display block * fix: danger button * refactor: make tester better * fix: change moment to dayjs * fix: build error * fix: import dayjs/plugin/isSameOrBefore * refactor: downgrade @testing-library/react to fix warning * fix: fix CI * fix: upgrade deps to fix build * fix: fix test * fix: skip some filed tests to avoid error * fix: fix build errors that maked by merge code * refactor: remove moment * fix: error * feat: update doc --------- Co-authored-by: chenos <chenlinxh@gmail.com>
2023-07-08 08:26:27 +08:00
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-testing-library": "^5.11.0",
2024-04-08 13:19:22 +08:00
"husky": "^9.0.11",
"lint-staged": "^13.2.3",
"prettier": "^3.1.1",
"prettier-plugin-packagejson": "^2.4.14",
"prettier-plugin-sql": "^0.17.0",
2021-12-06 21:23:34 +08:00
"pretty-format": "^24.0.0",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.2",
2024-04-11 00:06:27 +08:00
"typescript": "5.4.5",
"umi": "^4.1.8"
},
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">=20",
"pnpm": "8.15.5"
},
"volta": {
2024-03-27 17:59:58 +08:00
"node": "20.12.0",
"pnpm": "8.15.5"
2023-07-27 19:51:18 +08:00
},
2024-04-01 14:29:48 +08:00
"pnpm": {
"overrides": {
"@formily/core": "2.2.27",
"@formily/grid": "2.2.27",
"@formily/json-schema": "2.2.27",
"@formily/path": "2.2.27",
"@formily/react": "2.2.27",
"@formily/reactive": "2.2.27",
"@formily/reactive-react": "2.2.27",
"@formily/shared": "2.2.27",
"@formily/validator": "2.2.27",
2024-04-11 00:06:27 +08:00
"@types/node": "^20.12.2"
2024-04-01 14:29:48 +08:00
}
},
"licenses": "Apache-2.0"
2020-10-24 15:34:43 +08:00
}