forked from ardatan/TypeGraphQLModules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 820 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
{
"name": "type-graphql-modules",
"version": "1.0.0",
"description": "GraphQL Modules TypeGraphQL integration",
"main": "index.js",
"repository": "https://github.com/ardatan/TypeGraphQLModules.git",
"author": "Arda TANRIKULU <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"dev": "nodemon --exec yarn start -e ts",
"build": "tsc"
},
"dependencies": {
"@graphql-modules/core": "0.7.11",
"@graphql-modules/di": "0.7.11",
"apollo-server": "2.8.2",
"graphql": "14.4.2",
"reflect-metadata": "0.1.13",
"ts-node": "8.3.0",
"tsconfig-paths": "3.8.0",
"type-graphql": "0.17.5",
"typescript": "3.5.3"
},
"devDependencies": {
"@types/graphql": "14.2.3",
"nodemon": "1.19.1"
}
}