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.
53 lines
1.7 KiB
53 lines
1.7 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": "^0.17.5" |
|
}, |
|
"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" |
|
} |
|
} |
|
}
|
|
|