{ "name": "vendure", "version": "10.2.2", "private": true, "engines": { "node": ">= 10.12.0 < 11 || >= 12.00" }, "scripts": { "watch": "lerna run watch --parallel", "lint": "yarn tslint --fix", "format": "prettier --write --html-whitespace-sensitivity ignore", "bootstrap": "lerna bootstrap", "docs:watch": "concurrently --restart-tries 5 -n docgen,hugo,webpack -c green,blue,cyan \"yarn generate-graphql-docs && yarn generate-typescript-docs -w\" \"cd docs && hugo server\" \"cd docs && yarn webpack -w\"", "docs:build": "yarn generate-graphql-docs && yarn generate-typescript-docs && cd docs && yarn webpack --prod && node build.js && hugo", "docs:deploy": "cd docs && yarn && cd .. && yarn docs:build", "codegen": "ts-node scripts/codegen/generate-graphql-types.ts", "generate-typescript-docs": "ts-node scripts/docs/generate-typescript-docs.ts", "generate-graphql-docs": "ts-node scripts/docs/generate-graphql-docs.ts --api=shop && ts-node scripts/docs/generate-graphql-docs.ts --api=admin", "version": "yarn check-imports && yarn build && yarn generate-changelog && git add CHANGELOG.md", "dev-server:start": "cd packages/dev-server && yarn start", "test": "lerna run test --stream --no-bail", "e2e": "lerna run e2e --stream --no-bail", "build": "lerna run build", "check-imports": "ts-node scripts/check-imports.ts", "generate-changelog": "ts-node scripts/changelogs/generate-changelog.ts", "publish-release": "lerna publish -m \"chore: Publish %s\" --no-push", "publish-local": "lerna version --no-git-tag-version && cd scripts && ./publish-to-verdaccio.sh" }, "devDependencies": { "@commitlint/cli": "^8.2.0", "@commitlint/config-conventional": "^8.2.0", "@graphql-codegen/add": "1.2.0", "@graphql-codegen/cli": "1.2.0", "@graphql-codegen/fragment-matcher": "1.4.0", "@graphql-codegen/typescript": "1.2.0", "@graphql-codegen/typescript-compatibility": "1.2.0", "@graphql-codegen/typescript-operations": "1.2.0", "@types/graphql": "^14.0.5", "@types/klaw-sync": "^6.0.0", "@types/node": "^12.12.0", "concurrently": "^5.0.0", "conventional-changelog-core": "^4.0.3", "find": "^0.3.0", "graphql": "^14.5.8", "graphql-tools": "^4.0.0", "husky": "^3.0.0", "jest": "^24.5.0", "klaw-sync": "^6.0.0", "lerna": "^3.16.4", "lint-staged": "^9.2.0", "prettier": "^1.15.2", "ts-jest": "^24.1.0", "ts-node": "^8.4.1", "tslint": "^5.11.0", "typescript": "^3.2.4" }, "workspaces": { "packages": [ "packages/*" ], "nohoist": [ "**/@types/jasmine", "**/@types/jasminewd2" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "subject-case": [ 2, "always", [ "sentence-case" ] ] } }, "husky": { "hooks": { "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", "post-commit": "git update-index --again", "pre-commit": "lint-staged", "pre-push": "yarn build && yarn test && yarn e2e" } } }