nexus/examples/kitchen-sink/package.json

33 lines
956 B
JSON

{
"name": "@graphql-nexus/example-kitchen-sink",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "ts-node --log-error src/index.ts",
"debug": "ts-node-dev --inspect-brk --no-notify --transpileOnly --respawn ./src",
"dev": "ts-node-dev --no-notify --transpileOnly --respawn ./src",
"start": "ts-node --transpile-only src/index.ts"
},
"dependencies": {
"apollo-server": "^2.18.1",
"graphql": "^16.3.0",
"graphql-query-complexity": "^0.4.1",
"graphql-relay": "^0.6.0",
"graphql-subscriptions": "^1.0.0",
"graphql-tools": "^4.0.7",
"lodash": "^4.17.15",
"nexus": "^1.0.0",
"subscriptions-transport-ws": "^0.9.15",
"ts-node": "^8.5.4",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/graphql-relay": "^0.4.11",
"@types/lodash": "^4.14.149",
"jest": "^23.6.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.30"
}
}