forked from graphql-nexus/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 913 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
{
"name": "@graphql-nexus/example-kitchen-sink",
"version": "0.0.0",
"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": {
"@nexus/schema": "^0.13.1",
"apollo-server": "^2.2.0",
"graphql": "^15.3.0",
"graphql-query-complexity": "^0.4.1",
"graphql-relay": "^0.6.0",
"graphql-subscriptions": "^1.0.0",
"lodash": "^4.17.15",
"subscriptions-transport-ws": "^0.9.15",
"ts-node": "^8.5.4",
"typescript": "^3.6.4"
},
"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"
}
}