{ "name": "copykitku", "version": "1.0.0", "main": "index.js", "author": "Lauren Liberda ", "license": "GPL-3.0", "scripts": { "build": "yarn build:gql-codegen && yarn build:ts && yarn build:oclif", "build:ts": "yarn tsc", "build:ts:watch": "yarn tsc --watch", "build:gql-codegen": "yarn build:gql-codegen:download && yarn build:gql-codegen:generate", "build:gql-codegen:download": "yarn ts-node scripts/download-gql-schema.ts", "build:gql-codegen:generate": "yarn ts-node scripts/generate-gql-types.ts", "build:oclif": "yarn oclif-dev manifest", "dev": "yarn build:ts:watch", "lint": "yarn lint:prettier && yarn lint:eslint", "lint:fix": "yarn lint:prettier:fix && yarn lint:eslint:fix", "lint:eslint": "yarn eslint", "lint:eslint:fix": "yarn eslint --fix", "lint:prettier": "yarn prettier --check src", "lint:prettier:fix": "yarn prettier --check --write src", "test": "yarn jest", "start": "node build/src/index.js", "start:dev": "yarn build:ts && yarn start" }, "bin": { "copykitku": "./bin/run" }, "files": [ "/bin", "/build/src", "/oclif.manifest.json" ], "oclif": { "commands": "./src/cli", "bin": "copykitku", "plugins": [ "@oclif/plugin-help" ] }, "husky": { "hooks": { "pre-commit": "yarn lint:fix" } }, "dependencies": { "@iarna/toml": "^2.2.5", "@oclif/command": "^1.8.0", "@oclif/config": "^1.17.0", "@oclif/plugin-help": "^3.2.1", "appdata-path": "^1.0.0", "email-addresses": "^4.0.0", "fs-extra": "^9.1.0", "got": "^11.8.1", "graphql": "^15.5.0", "inquirer": "^7.3.3", "simple-git": "^2.31.0" }, "devDependencies": { "@graphql-codegen/cli": "^1.20.1", "@graphql-codegen/introspection": "^1.18.1", "@graphql-codegen/typescript": "^1.20.2", "@oclif/dev-cli": "^1.26.0", "@types/email-addresses": "^3.0.0", "@types/fs-extra": "^9.0.6", "@types/iarna__toml": "^2.0.1", "@types/inquirer": "^7.3.1", "@types/jest": "^26.0.20", "@types/node": "^14.14.25", "eslint": "^7.19.0", "eslint-config-airbnb-typescript": "^12.0.0", "eslint-config-prettier": "^7.2.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.3.1", "husky": "^4.3.8", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.5.1", "ts-node": "^9.1.1", "typescript": "^4.1.3" } }