nexus/examples/kitchen-sink/package.json

33 lines
956 B
JSON
Raw Permalink Normal View History

2018-11-26 06:53:58 +08:00
{
2018-12-07 00:35:59 +08:00
"name": "@graphql-nexus/example-kitchen-sink",
2018-11-26 06:53:58 +08:00
"version": "0.0.0",
"license": "MIT",
2018-11-26 06:53:58 +08:00
"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"
2018-11-26 06:53:58 +08:00
},
"dependencies": {
"apollo-server": "^2.18.1",
2022-02-18 01:47:40 +08:00
"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",
2020-12-15 03:10:29 +08:00
"nexus": "^1.0.0",
2019-03-08 09:00:08 +08:00
"subscriptions-transport-ws": "^0.9.15",
"ts-node": "^8.5.4",
2022-02-18 01:47:40 +08:00
"typescript": "^4.5.5"
2018-11-26 06:53:58 +08:00
},
"devDependencies": {
"@types/graphql-relay": "^0.4.11",
"@types/lodash": "^4.14.149",
2018-11-26 06:53:58 +08:00
"jest": "^23.6.0",
2019-11-12 03:57:21 +08:00
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.30"
2018-11-26 06:53:58 +08:00
}
}