-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "apollo-adonis",
"version": "1.1.0",
"description": "Adonis Apollo integration. (WIP)",
"main": "./build/providers/ApolloProvider",
"types": "./build/typings/index",
"scripts": {
"build": "rm -rf build && tsc && cp -r templates build/templates",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastiandittrich/apollo-adonis.git"
},
"homepage": "https://github.com/sebastiandittrich/apollo-adonis#readme",
"keywords": [
"adonis",
"apollo"
],
"author": "Sebastian Dittrich <sebastian.dittrich@live.de>",
"license": "ISC",
"peerDependencies": {
"@adonisjs/core": "~5.0.4-preview-rc"
},
"dependencies": {
"apollo-server": "^2.23.0",
"apollo-server-core": "^2.23.0"
},
"devDependencies": {
"@adonisjs/ace": "^6.9.4",
"@adonisjs/core": "^5.0.0",
"@adonisjs/fold": "^6.3.5",
"@adonisjs/sink": "^5.1.2",
"typescript": "^3.9.7"
},
"files": [
"build"
],
"adonisjs": {
"instructions": "./build/instructions.js",
"types": "apollo-adonis",
"providers": [
"apollo-adonis"
]
}
}