tachybase_todo/package.json

109 lines
3.3 KiB
JSON
Raw Normal View History

2020-10-24 15:34:43 +08:00
{
"name": "tachybase",
"version": "0.21.37",
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-local": "APP_ENV_PATH=.env.local 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.3.1",
"rimraf": "^3.0.2"
},
2020-10-24 15:34:43 +08:00
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/prompt-cli": "^16.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tachybase/build": "workspace:*",
"@tachybase/cli": "workspace:*",
"@tachybase/preset-hera-rental": "workspace:*",
"@tachybase/preset-hera-sancongtou": "workspace:*",
"@tachybase/preset-mini": "workspace:*",
"@tachybase/preset-tachybase": "workspace:*",
"@tachybase/test": "workspace:*",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"auto-changelog": "^2.4.0",
"axios": "^1.6.8",
"commander": "^9.5.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^5.11.1",
2024-04-08 13:19:22 +08:00
"husky": "^9.0.11",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sql": "^0.17.1",
"pretty-format": "^24.9.0",
"pretty-quick": "^3.3.1",
"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.10"
},
"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": {
"neverBuiltDependencies": [
"canvas"
],
2024-04-01 14:29:48 +08:00
"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",
"@types/node": "^20.12.2",
"dayjs": "1.11.10"
2024-04-01 14:29:48 +08:00
}
}
2020-10-24 15:34:43 +08:00
}