Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32,411 changes: 18,512 additions & 13,899 deletions package-lock.json

Large diffs are not rendered by default.

45 changes: 26 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"devDependencies": {
"@types/node": "^24.0.10",
"husky": "^8.0.3",
"lerna": "^4.0.0",
"lint-staged": "^14.0.0",
"standard": "^17.1.0",
"ts-standard": "^12.0.2",
Expand Down Expand Up @@ -41,25 +40,33 @@
"git add"
]
},
"workspaces": [
"packages/core",
"packages/bolt-connection",
"packages/neo4j-driver",
"packages/neo4j-driver-deno",
"packages/neo4j-driver-lite",
"packages/benchkit-backend",
"packages/testkit-backend"
],
"scripts": {
"clean": "lerna clean -y && lerna run clean",
"build": "lerna bootstrap --ci",
"set_version::deno": "lerna run set_version --scope neo4j-driver-deno --stream -- ",
"build::deno": "lerna run build --scope neo4j-driver-deno --stream -- ",
"build::notci": "lerna bootstrap",
"docs": "lerna run docs --stream --concurrency 1",
"test::unit": "lerna run test::unit --stream",
"test::deno": "lerna run test::deno --stream",
"test::integration": "lerna run test::integration --stream",
"test::browser": "lerna run test::browser --stream",
"test::stress": "lerna run test::stress --stream",
"test": "lerna run test --stream",
"start-neo4j": "lerna run start-neo4j --scope neo4j-driver",
"stop-neo4j": "lerna run stop-neo4j --scope neo4j-driver",
"start-testkit-backend": "lerna run start --scope testkit-backend --stream",
"start-testkit-backend::deno": "lerna run start::deno --scope testkit-backend --stream",
"start-benchkit-backend": "lerna run start --scope benchkit-backend --stream",
"lerna": "lerna",
"clean": "rm -fr node_modules && npm run clean --workspaces",
"build": "npm ci",
"set_version::deno": "npm run set_version --scope neo4j-driver-deno --stream -- ",
"build::deno": "npm run build --scope neo4j-driver-deno --stream -- ",
"build::notci": "npm i",
"docs": "npm run docs --stream --concurrency 1",
"test::unit": "npm run test::unit --stream --workspaces --if-present",
"test::deno": "npm run test::deno --stream --workspaces --if-present",
"test::integration": "npm run test::integration --stream --workspaces --if-present",
"test::browser": "npm run test::browser --stream --workspaces --if-present",
"test::stress": "npm run test::stress --stream --workspaces --if-present",
"test": "npm run test --stream --workspaces --if-present",
"start-neo4j": "npm run start-neo4j --scope neo4j-driver",
"stop-neo4j": "npm run stop-neo4j --scope neo4j-driver",
"start-testkit-backend": "npm run start --workspace=testkit-backend --stream",
"start-testkit-backend::deno": "npm run start::deno --workspace=testkit-backend --stream",
"start-benchkit-backend": "npm run start --scope benchkit-backend --stream",
"prepare": "husky install",
"lint-staged": "lint-staged",
"lint": "npm run lint::core && npm run lint::bolt-connection && npm run lint::bolt-connection && npm run lint::neo4j-driver-lite && npm run lint::neo4j-driver && npm run lint::testkit-backend && npm run lint::benchkit-backend",
Expand Down
Loading