{ "name": "vendure", "version": "0.1.0-alpha.17", "private": true, "scripts": { "core:watch": "concurrently -n tsc,gulp \"cd packages/core && yarn tsc:watch\" \"cd packages/core && yarn gulp:watch\"", "bootstrap": "lerna bootstrap", "docs:watch": "concurrently -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", "format": "prettier --write --html-whitespace-sensitivity ignore", "lint:core": "cd packages/core && yarn lint --fix", "lint:admin-ui": "cd admin-ui && yarn lint --fix", "precommit": "lint-staged", "postcommit": "git update-index --again", "prepush": "yarn test:all && cd admin-ui && yarn build --prod", "dev-server": "cd packages/dev-server && yarn start", "dev-server:populate": "cd packages/dev-server && yarn populate", "test:all": "cd admin-ui && yarn test --watch=false --browsers=ChromeHeadlessCI --progress=false && cd ../ && yarn test:common && yarn test:core && yarn test:email-plugin && yarn test:e2e", "test:common": "jest --config packages/common/jest.config.js", "test:core": "jest --config packages/core/jest.config.js", "test:email-plugin": "jest --config packages/email-plugin/jest.config.js", "test:e2e": "jest --config packages/core/e2e/config/jest-e2e.json --runInBand", "test:admin-ui": "cd admin-ui && yarn test --watch=false --browsers=ChromeHeadlessCI --progress=false", "build": "lerna run build", "publish:packages": "yarn build && lerna publish --exact -m \"chore: Publish %s release\" --no-git-tag-version" }, "devDependencies": { "@types/graphql": "^14.0.5", "@types/klaw-sync": "^6.0.0", "@types/node": "^10.11.5", "concurrently": "^4.1.0", "graphql": "^14.1.1", "graphql-code-generator": "^0.16.0", "graphql-codegen-add": "^0.16.0", "graphql-codegen-time": "^0.16.0", "graphql-codegen-typescript-client": "^0.16.0", "graphql-codegen-typescript-common": "^0.16.0", "graphql-codegen-typescript-server": "^0.16.0", "graphql-tools": "^4.0.0", "husky": "^0.14.3", "jest": "^24.5.0", "klaw-sync": "^6.0.0", "lerna": "^3.13.1", "lint-staged": "^7.2.0", "prettier": "^1.15.2", "ts-jest": "^24.0.0", "ts-node": "^7.0.1", "tslint": "^5.11.0", "typescript": "^3.2.4" }, "workspaces": ["packages/*"] }