copykitku/package.json
2021-02-01 15:40:04 +01:00

69 lines
1.9 KiB
JSON

{
"name": "git-copycat",
"version": "1.0.0",
"main": "index.js",
"author": "selfisekai <laura@selfisekai.rocks>",
"license": "GPL-3.0",
"scripts": {
"build": "yarn build:gql-codegen && yarn build:ts",
"build:ts": "yarn tsc",
"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",
"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"
},
"bin": {
"copycat": "./bin/run"
},
"files": [
"/bin",
"/build/src",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./src/cli",
"bin": "copycat",
"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",
"fs-extra": "^9.1.0",
"got": "^11.8.1",
"graphql": "^15.5.0",
"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/fs-extra": "^9.0.6",
"@types/iarna__toml": "^2.0.1",
"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",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}