mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.1 KiB
62 lines
2.1 KiB
{ |
|
"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-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", |
|
"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" |
|
} |
|
} |
|
}
|
|
|