2020-10-24 15:34:43 +08:00
|
|
|
{
|
2024-04-12 19:20:14 +08:00
|
|
|
"name": "tachybase",
|
2024-05-17 20:58:00 +08:00
|
|
|
"version": "0.21.29",
|
2020-10-24 15:34:43 +08:00
|
|
|
"private": true,
|
2022-04-25 09:45:24 +08:00
|
|
|
"license": "Apache-2.0",
|
2020-10-24 15:34:43 +08:00
|
|
|
"scripts": {
|
2024-04-12 19:20:14 +08:00
|
|
|
"build": "tachybase build",
|
|
|
|
"build:p": "tachybase build --no-dts",
|
2024-04-01 13:39:44 +08:00
|
|
|
"changelog": "auto-changelog -p -t keepachangelog",
|
2024-04-12 19:20:14 +08:00
|
|
|
"clean": "tachybase clean",
|
|
|
|
"dev": "tachybase dev",
|
2024-05-16 11:54:24 +08:00
|
|
|
"dev-local": "APP_ENV_PATH=.env.local tachybase dev",
|
2024-04-12 19:20:14 +08:00
|
|
|
"dev-server": "tachybase dev --server",
|
|
|
|
"e2e": "tachybase e2e",
|
2024-04-01 13:39:44 +08:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2024-04-12 19:20:14 +08:00
|
|
|
"postinstall": "tachybase postinstall",
|
2024-04-01 13:39:44 +08:00
|
|
|
"lint": "eslint .",
|
2024-04-12 19:20:14 +08:00
|
|
|
"pm": "tachybase pm",
|
|
|
|
"pm2": "tachybase pm2",
|
2024-04-08 13:19:22 +08:00
|
|
|
"prepare": "husky",
|
2024-04-20 06:55:30 +08:00
|
|
|
"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 '\"')",
|
2024-04-01 13:39:44 +08:00
|
|
|
"run:example": "tsx -r dotenv/config -r tsconfig-paths/register ./examples/index.ts",
|
2024-04-12 19:20:14 +08:00
|
|
|
"start": "tachybase start",
|
|
|
|
"tachybase": "tachybase",
|
2024-04-20 06:20:40 +08:00
|
|
|
"tag": "changeset",
|
2024-04-12 19:20:14 +08:00
|
|
|
"tar": "tachybase tar",
|
|
|
|
"tb": "tachybase",
|
2024-04-15 05:04:12 +08:00
|
|
|
"tbi": "tachybase install",
|
2024-04-12 19:20:14 +08:00
|
|
|
"tc": "tachybase test:client",
|
|
|
|
"test": "tachybase test",
|
|
|
|
"test:client": "tachybase test:client",
|
|
|
|
"test:server": "tachybase test:server",
|
2024-04-20 06:20:40 +08:00
|
|
|
"ts": "tachybase test:server",
|
2024-04-20 06:55:30 +08:00
|
|
|
"ver": "changeset version"
|
2024-04-01 13:39:44 +08:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,json,sql}": [
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"*.ts?(x)": [
|
|
|
|
"eslint --fix"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-21 06:35:02 +08:00
|
|
|
"pm2": "^5.3.1",
|
|
|
|
"rimraf": "^3.0.2"
|
2023-07-25 14:09:02 +08:00
|
|
|
},
|
2020-10-24 15:34:43 +08:00
|
|
|
"devDependencies": {
|
2024-04-01 13:39:44 +08:00
|
|
|
"@changesets/cli": "^2.27.1",
|
2024-04-21 06:35:02 +08:00
|
|
|
"@commitlint/cli": "^16.3.0",
|
|
|
|
"@commitlint/config-conventional": "^16.2.4",
|
|
|
|
"@commitlint/prompt-cli": "^16.3.0",
|
2024-05-08 16:20:31 +08:00
|
|
|
"@tachybase/build": "workspace:*",
|
2024-04-12 19:20:14 +08:00
|
|
|
"@tachybase/cli": "workspace:*",
|
2024-05-08 16:20:31 +08:00
|
|
|
"@tachybase/preset-hera-rental": "workspace:*",
|
2024-05-15 13:12:55 +08:00
|
|
|
"@tachybase/preset-hera-sancongtou": "workspace:*",
|
2024-04-15 05:04:12 +08:00
|
|
|
"@tachybase/preset-tachybase": "workspace:*",
|
2024-05-08 16:20:31 +08:00
|
|
|
"@tachybase/test": "workspace:*",
|
2024-04-21 06:35:02 +08:00
|
|
|
"@types/react": "^18.2.79",
|
|
|
|
"@types/react-dom": "^18.2.25",
|
2023-04-25 13:12:14 +08:00
|
|
|
"auto-changelog": "^2.4.0",
|
2024-04-21 06:35:02 +08:00
|
|
|
"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",
|
2024-04-21 06:35:02 +08:00
|
|
|
"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",
|
2024-04-02 18:13:33 +08:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2024-04-10 16:14:26 +08:00
|
|
|
"tsx": "^4.7.2",
|
2024-04-11 00:06:27 +08:00
|
|
|
"typescript": "5.4.5",
|
2024-04-21 06:35:02 +08:00
|
|
|
"umi": "^4.1.10"
|
2024-04-01 13:39:44 +08:00
|
|
|
},
|
|
|
|
"packageManager": "pnpm@8.15.5",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=20",
|
|
|
|
"pnpm": "8.15.5"
|
2023-03-05 14:45:56 +08:00
|
|
|
},
|
|
|
|
"volta": {
|
2024-03-27 17:59:58 +08:00
|
|
|
"node": "20.12.0",
|
2024-04-01 13:39:44 +08:00
|
|
|
"pnpm": "8.15.5"
|
2023-07-27 19:51:18 +08:00
|
|
|
},
|
2024-04-01 14:29:48 +08:00
|
|
|
"pnpm": {
|
2024-04-22 03:15:23 +08:00
|
|
|
"neverBuiltDependencies": [
|
|
|
|
"canvas"
|
|
|
|
],
|
2024-04-01 14:29:48 +08:00
|
|
|
"overrides": {
|
2024-04-02 18:13:33 +08:00
|
|
|
"@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-29 21:41:13 +08:00
|
|
|
"@types/node": "^20.12.2",
|
|
|
|
"dayjs": "1.11.10"
|
2024-04-01 14:29:48 +08:00
|
|
|
}
|
2024-04-29 21:41:13 +08:00
|
|
|
}
|
2020-10-24 15:34:43 +08:00
|
|
|
}
|