mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:26:57 +00:00
* feat: notifications wip * feat: wip * feat: longpoll and notifications.controller.ts * feat: longpoll and notifications.controller.ts * feat: enable email notifications * fix: notification styles and list * fix: update swagger feat: connect poller to frontend * fix: minor ui corrections * feat: move notifications to ee feat: scroll to commentId fix: polling fail on network error fix: unreadcount not updating fix: add workspace to comment mention event * fix: pubsub for notifications * fix: warning maxListeners * fix: update ui * fix: minor fixes * chore: move pub-sub to redis folder * fix: update ui and schema feat: optimistic comment update and create * fix: row empty during inital load causing row not loading * fix: build * fix: some updated * fix: minor ui corrections * fix: manage local state manually for interactivity * fix: remove prev notifcation data * fix: review comments * fix: code rabbit comments * fix: code rabbit comments * feat: delete notifications * fix: code rabbit comments * fix: row RowMeta manipulation fix: overflow notifications * fix: invalid offset * fix: updated widths * fix: tests * fix: playwright * feat: resolved by comments * feat: update layout * fix: wait 5 seconds before polling start, after polling starts, reload the notifications * fix: bug fixes * fix: disable long polling for playwright * fix: update migration * fix: lint * fix: code rabbit comments * fix: resolve tooltip * feat: resolve ee * fix: build failing * fix: review comments * fix: dependency synx * fix: update notification style
64 lines
2.1 KiB
JSON
64 lines
2.1 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": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
|
|
},
|
|
"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-mail-templates --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": "latest",
|
|
"typescript": "latest",
|
|
"ajv@<6.12.3": ">=6.12.3",
|
|
"node.extend@<1.1.7": ">=1.1.7",
|
|
"tough-cookie@<4.1.3": ">=4.1.3",
|
|
"@babel/traverse@<7.23.2": ">=7.23.2",
|
|
"follow-redirects@<1.15.4": ">=1.15.4",
|
|
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
|
|
"ip@<1.1.9": ">=1.1.9",
|
|
"ip@=2.0.0": ">=2.0.1",
|
|
"xml2js@<0.5.0": ">=0.5.0",
|
|
"ufo": ">=1.5.3"
|
|
}
|
|
}
|
|
}
|