forked from graphql-nexus/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 954 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"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": "^15.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": "^3.9"
},
"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"
}
}