-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.42 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "adonis-type-graphql",
"version": "1.0.1",
"description": "Seamlessly integrate Type-GraphQL and launch Apollo Server in Adonis JS applications.",
"author": "Miguel Vargas",
"types": "build/adonis-typings/index.d.ts",
"main": "build/providers/index.js",
"keywords": ["adonis", "adonisjs", "apollo server", "graphql", "type-graphql", "typescript", "nodejs"],
"scripts": {
"build": "npm run copyfiles && tsc",
"copyfiles": "copyfiles \"templates/**/*.txt\" build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./build/adonis-typings/index.d.ts",
"require": "./build/providers/index.js"
},
"./commands": "./build/commands/index.js",
"./commands/CreateGraphqlModel": "./build/commands/CreateGraphqlModel.js",
"./build/commands": "./build/commands/index.js",
"./build/commands/CreateGraphqlModel": "./build/commands/CreateGraphqlModel.js",
"./build/config": "./build/grapqhl.js",
"./*": "./*"
},
"files": [
"build/adonis-typings",
"build/commands",
"build/providers",
"build/templates",
"build/src",
"build/standalone.js",
"build/standalone.d.ts"
],
"license": "ISC",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"devDependencies": {
"@adonisjs/ace": "^11.3.1",
"@adonisjs/core": "^5.9.0",
"@types/node": "^18.15.7",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.36.0",
"prettier": "^3.0.3",
"typescript": "^5.0.2"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"@graphql-tools/load-files": "^7.0.0",
"copyfiles": "^2.4.1",
"globby": "^13.2.2",
"graphql": "^16.8.1",
"graphql-tools": "^9.0.0",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2",
"type-graphql": "^2.0.0-beta.3",
"typedi": "^0.10.0"
},
"adonisjs": {
"templates": {
"config": [
{
"src": "config.txt",
"dest": "graphql.ts"
}
]
},
"types": "adonis-type-graphql",
"providers": [
"adonis-type-graphql"
],
"commands": [
"adonis-type-graphql/build/commands"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvargaslandolfi1993/adonis-type-graphql.git"
}
}