Files
api/package.json
2020-05-12 21:09:36 +09:30

107 lines
2.9 KiB
JSON

{
"name": "@unraid/graphql-api",
"version": "2.4.8",
"main": "dist/index.js",
"repository": "git@github.com:unraid/graphql-api.git",
"author": "Alexis Tyler <xo@wvvw.me> (https://wvvw.me/)",
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"copy-schemas": "cpx src/**/*.graphql dist",
"clean": "modclean --no-progress --run --path .",
"commit": "npx git-cz",
"lint": "xo --verbose",
"lint:quiet": "xo --quiet",
"lint:fix": "xo --fix",
"test": "exit 0",
"cover": "npm run cover:unit && npm run cover:integration && npm run cover:report",
"cover:unit": "nyc --silent npm run test:unit",
"cover:integration": "nyc --silent --no-clean npm run test:integration",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"patch": "npm-run-all patch:**",
"patch:subscriptions-transport-ws": "node ./.scripts/patches/subscriptions-transport-ws.js",
"release": "standard-version"
},
"files": [
"dist",
"index.js"
],
"dependencies": {
"@gridplus/docker-events": "github:OmgImAlexis/docker-events",
"@unraid/core": "github:unraid/core#master",
"accesscontrol": "^2.2.1",
"am": "^1.0.2",
"apollo-server": "2.13.1",
"apollo-server-express": "2.13.1",
"camelcase": "6.0.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-directive": "^0.2.1",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.1",
"graphql-type-long": "^0.1.1",
"graphql-type-uuid": "^0.2.0",
"lodash.get": "^4.4.2",
"merge-graphql-schemas": "^1.7.8",
"node-cache": "5.1.0",
"set-interval-async": "^1.0.32",
"stoppable": "^1.1.0",
"subscriptions-transport-ws": "^0.9.16"
},
"optionalDependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ava": "^3.8.2",
"bundle-dependencies": "^1.0.2",
"cpx": "1.5.0",
"cz-conventional-changelog": "3.2.0",
"husky": "4.2.5",
"modclean": "^3.0.0-beta.1",
"node-env-run": "^3.0.2",
"npm-check": "5.9.2",
"source-map-support": "0.5.19",
"standard-version": "^7.1.0",
"ts-node": "8.10.1",
"typescript": "3.8.3",
"xo": "0.30.0"
},
"bundledDependencies": [
"@gridplus/docker-events",
"@unraid/core",
"accesscontrol",
"am",
"apollo-server",
"apollo-server-express",
"camelcase",
"express",
"graphql",
"graphql-directive",
"graphql-tag",
"graphql-type-json",
"graphql-type-long",
"graphql-type-uuid",
"lodash.get",
"merge-graphql-schemas",
"node-cache",
"set-interval-async",
"stoppable",
"subscriptions-transport-ws"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"xo": {
"rules": {
"max-params": 0
}
}
}