-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1002 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1002 Bytes
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
33
34
35
36
{
"name": "graphql-deep-dive-demo",
"description": "",
"dependencies": {
"@apollo/federation": "^0.6.2",
"@apollo/gateway": "^0.6.6",
"@types/graphql": "14.0.7",
"apollo-datasource-rest": "latest",
"apollo-server": "2.1.0",
"graphql": "^14.1.1",
"graphql-tools": "^4.0.4",
"nexus": "0.11.7",
"sql.js": "0.5.0",
"ts-node": "8.0.3",
"type-graphql": "0.17.0",
"typeorm": "0.2.15",
"typescript": "3.3.4000"
},
"license": "MIT",
"main": "index.ts",
"scripts": {
"start": "nodemon --exec 'ts-node' src/index.ts localhost 4000",
"generate": "gql-gen --config codegen.yml"
},
"keywords": [],
"devDependencies": {
"@graphql-codegen/cli": "^1.0.0",
"@graphql-codegen/typescript": "^1.0.0",
"@graphql-codegen/typescript-operations": "^1.0.0",
"@graphql-codegen/typescript-resolvers": "^1.0.0",
"@types/graphql": "14.0.1",
"graphql-codegen": "0.4.0",
"nodemon": "1.18.4",
"npm-run-all": "^4.1.5"
}
}