nexus/package.json

64 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2018-11-03 05:11:51 +08:00
{
2018-11-04 11:44:05 +08:00
"name": "gqliteral",
2018-11-30 00:47:47 +08:00
"version": "0.3.0",
2018-11-09 06:58:10 +08:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2018-11-03 05:11:51 +08:00
"license": "MIT",
2018-11-13 03:54:29 +08:00
"description": "Scalable, strongly typed GraphQL schema development",
2018-11-09 06:58:10 +08:00
"scripts": {
2018-11-12 05:34:07 +08:00
"dev": "tsc -w",
"test": "jest",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf dist",
2018-11-16 07:44:38 +08:00
"prepublish": "yarn clean && yarn lint && yarn build",
2018-11-21 22:19:24 +08:00
"website": "cd website && yarn && yarn start",
"link-examples": "ts-node ./scripts/link-examples.ts",
"unlink-examples": "ts-node ./scripts/unlink-examples.ts"
2018-11-12 05:34:07 +08:00
},
2018-11-12 05:38:00 +08:00
"files": [
"src",
"dist",
"LICENSE.md",
"README.md",
"yarn.lock"
],
2018-11-12 05:34:07 +08:00
"author": {
"name": "Tim Griesser",
"url": "https://github.com/tgriesser"
2018-11-09 06:58:10 +08:00
},
2018-11-03 05:11:51 +08:00
"dependencies": {
2018-11-13 23:37:48 +08:00
"tslib": "^1.9.3"
2018-11-03 05:11:51 +08:00
},
"devDependencies": {
"@types/graphql": "14.0.3",
2018-11-13 11:19:23 +08:00
"@types/jest": "^23.3.7",
"@types/node": "^10.12.2",
"@types/prettier": "^1.13.2",
2018-11-03 05:11:51 +08:00
"graphql": "^14.0.2",
"husky": "^1.1.2",
2018-11-13 11:19:23 +08:00
"jest": "^23.6.0",
2018-11-03 05:11:51 +08:00
"lint-staged": "^7.3.0",
2018-11-13 11:19:23 +08:00
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
2018-11-21 21:46:34 +08:00
"ts-node": "^7.0.1",
2018-11-04 11:44:05 +08:00
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
2018-11-21 21:46:34 +08:00
"typescript": "^3.1.3"
2018-11-03 05:11:51 +08:00
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
2018-11-03 05:11:51 +08:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}