mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:56:13 +00:00
6d04914e32
* fix: tsx must be loaded with --import instead of --loader * fix: update ci * fix: update ci
112 lines
3.0 KiB
JSON
112 lines
3.0 KiB
JSON
{
|
|
"name": "nocobase",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*/*",
|
|
"packages/*/*/*"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "Apache-2.0",
|
|
"url": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"nocobase": "nocobase",
|
|
"pm": "nocobase pm",
|
|
"dev": "nocobase dev",
|
|
"dev-server": "nocobase dev --server",
|
|
"start": "nocobase start",
|
|
"build": "nocobase build",
|
|
"tar": "nocobase tar",
|
|
"test": "nocobase test",
|
|
"test:client": "vitest",
|
|
"e2e": "nocobase e2e",
|
|
"test:e2e": "tsx ./scripts/runE2e.setup.ts",
|
|
"test:e2e:codegen": "tsx ./scripts/codegen.setup.ts",
|
|
"test:e2e:server": "tsx ./scripts/nocobase.setup.ts",
|
|
"tc": "yarn test:client",
|
|
"te": "yarn test:e2e",
|
|
"tec": "yarn test:e2e:codegen",
|
|
"tes": "yarn test:e2e:server",
|
|
"doc": "nocobase doc",
|
|
"postinstall": "nocobase postinstall",
|
|
"lint": "eslint .",
|
|
"clean": "nocobase clean",
|
|
"changelog": "auto-changelog -p -t keepachangelog",
|
|
"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": "tsx -r dotenv/config -r tsconfig-paths/register ./examples/index.ts"
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@typescript-eslint/parser": "^6.2.0",
|
|
"react-router-dom": "^6.11.2",
|
|
"react-router": "^6.11.2",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"nwsapi": "2.2.7"
|
|
},
|
|
"config": {
|
|
"ghooks": {
|
|
"pre-commit": "yarn lint-staged",
|
|
"commit-msg": "commitlint --edit"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json}": [
|
|
"prettier --write"
|
|
],
|
|
"*.ts?(x)": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.1.0",
|
|
"@commitlint/config-conventional": "^16.0.0",
|
|
"@commitlint/prompt-cli": "^16.1.0",
|
|
"@faker-js/faker": "8.1.0",
|
|
"@playwright/test": "^1.40.1",
|
|
"@swc/core": "^1.3.92",
|
|
"@swc/jest": "^0.2.29",
|
|
"@testing-library/jest-dom": "^5.17.0",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"auto-changelog": "^2.4.0",
|
|
"axios": "^0.26.1",
|
|
"commander": "^9.2.0",
|
|
"eslint-plugin-jest-dom": "^5.0.1",
|
|
"eslint-plugin-testing-library": "^5.11.0",
|
|
"execa": "^5.1.1",
|
|
"ghooks": "^2.0.4",
|
|
"jest": "^29.6.2",
|
|
"jest-cli": "^29.6.2",
|
|
"jest_workaround": "^0.79.19",
|
|
"jsdom-worker": "^0.3.0",
|
|
"lint-staged": "^13.2.3",
|
|
"pretty-format": "^24.0.0",
|
|
"pretty-quick": "^3.1.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"tsx": "^4.6.2",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "5.1.3",
|
|
"vite": "^4.4.9",
|
|
"vitest": "^0.34.6"
|
|
},
|
|
"volta": {
|
|
"node": "18.14.2",
|
|
"yarn": "1.22.19"
|
|
},
|
|
"dependencies": {}
|
|
}
|