-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "apollo-server-autoloader",
"version": "2.1.2",
"description": "auto loading schemas, resolvers and datasources",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:clean": "rm -rf ./dist",
"build": "yarn run build:clean && tsc --declaration",
"prepublish": "yarn build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meinto/apollo-server-autoloader.git"
},
"keywords": [
"apollo",
"apollo-server",
"autoloader",
"graphql",
"gql"
],
"author": "Tobias Meinhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/meinto/apollo-server-autoloader/issues"
},
"homepage": "https://github.com/meinto/apollo-server-autoloader#readme",
"peerDependencies": {
"apollo-datasource-rest": "0.x",
"apollo-server": "2.x",
"graphql": "14.x || 15.x",
"lodash": "4.x"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.5.3",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"apollo-datasource-rest": "^0.9.3",
"apollo-server": "^2.9.16",
"eslint": "^6.8.0",
"graphql": "^14.6.0",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}