-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "nexus-federation-plugin",
"version": "0.0.12",
"main": "dist/index.js",
"module": "dist/nexus.esm.js",
"types": "dist/index.d.ts",
"license": "MIT",
"private": false,
"description": "",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx test && tsdx lint && tsdx build"
},
"dependencies": {
"@apollo/federation": "^0.20.7",
"apollo-server-testing": "^2.19.0",
"chalk": "^4.1.0",
"graphql-transform-federation": "^2.2.0",
"nexus": "1.0.0"
},
"devDependencies": {
"@types/node": "14.14.14",
"@types/prettier": "^2.1.5",
"apollo-server": "2.19.0",
"eslint-plugin-prettier": "^3.3.1",
"graphql": "15.4.0",
"prettier": "2.2.1",
"tsdx": "^0.14.1",
"typescript": "4.1.3"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"repository": "[email protected]:Spantree/nexus-federation-plugin.git",
"author": "Ahmed Elywa",
"files": [
"dist"
]
}