mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:26:57 +00:00
* chore(renovate): Update patch * chore(deps): update node version to 18.19.1 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: աɨռɢӄաօռɢ <wingkwong.code@gmail.com>
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "nocodb-root",
|
|
"description": "NocoDB Root",
|
|
"private": true,
|
|
"author": {
|
|
"name": "NocoDB Inc",
|
|
"url": "https://nocodb.com/"
|
|
},
|
|
"homepage": "https://github.com/nocodb/nocodb",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nocodb/nocodb.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nocodb/nocodb/issues"
|
|
},
|
|
"license": "AGPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"fs": "0.0.1-security",
|
|
"lerna": "^7.4.2",
|
|
"husky": "^8.0.3",
|
|
"xlsx": "^0.17.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pnpm dlx lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"scripts/playwright/**/*.{ts,tsx,js,json}": [
|
|
"pnpm run lint:staged:playwright"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "pnpm --filter=nocodb-sdk install && pnpm --filter=nocodb-sdk run build && pnpm --filter=nocodb --filter=nc-gui --filter=playwright install",
|
|
"start:frontend": "pnpm --filter=nc-gui run dev",
|
|
"start:backend": "pnpm --filter=nocodb run start",
|
|
"lint:staged:playwright": "cd ./tests/playwright; pnpm dlx lint-staged; cd -",
|
|
"start:mysql": "docker-compose -f ./tests/playwright/scripts/docker-compose-mysql-playwright.yml up -d",
|
|
"stop:mysql": "docker-compose -f ./tests/playwright/scripts/docker-compose-mysql-playwright.yml down",
|
|
"start:pg": "docker-compose -f ./tests/playwright/scripts/docker-compose-pg.yml up -d",
|
|
"stop:pg": "docker-compose -f ./tests/playwright/scripts/docker-compose-pg.yml down",
|
|
"prepare": "husky install",
|
|
"preinstall": "npx only-allow pnpm",
|
|
"install:local-sdk": "node scripts/installLocalSdk.js"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"vue": "3.3.13",
|
|
"typescript": "latest"
|
|
}
|
|
}
|
|
}
|