-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 1.99 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
{
"name": "adonis-apollo",
"version": "0.22.1",
"description": "Apollo GraphQL server for AdonisJs",
"main": "./lib/providers/ApolloProvider.js",
"types": "./lib/adonis-typings/index.d.ts",
"files": [
"lib",
"src",
"templates"
],
"keywords": [
"adonisjs",
"adonis",
"graphql",
"apollo",
"provider"
],
"author": "Michaël Zasso",
"license": "MIT",
"adonisjs": {
"templates": {
"basePath": "./templates",
"config": "apollo.txt"
},
"types": "adonis-apollo",
"providers": [
"adonis-apollo"
]
},
"scripts": {
"clean": "rimraf lib",
"check-types": "tsc --noEmit",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "jest --coverage",
"tsc": "npm run clean && npm run tsc-cjs",
"tsc-cjs": "tsc --project tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/adonis-apollo.git"
},
"bugs": {
"url": "https://github.com/zakodium/adonis-apollo/issues"
},
"homepage": "https://github.com/zakodium/adonis-apollo#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@adonisjs/core": "^5.9.0",
"@adonisjs/logger": "^4.1.5",
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"eslint-config-zakodium": "^8.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "=5.5.4"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.1",
"@graphql-tools/schema": "^10.0.2",
"@types/graphql-upload": "^15.0.2",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"graphql-upload": "^15.0.2"
}
}