-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.34 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
{
"name": "@korzun/nexus-federation-plugin",
"description": "An Apollo Federation 2.0 Plugin for Nexus",
"private": false,
"license": "MIT",
"version": "0.0.3",
"keywords": [
"graphql",
"typescript",
"nexus",
"apollographql",
"graphql-schema",
"graphql-apollo",
"graphql-nexus",
"graphql-federation"
],
"author": {
"name": "Simon Korzun",
"url": "https://github.com/Korzun"
},
"bugs": {
"url": "https://github.com/Korzun/nexus-federation-plugin/issues"
},
"files": [
"dist",
"package-lock.json",
"README.md",
"src"
],
"homepage": "https://github.com/Korzun/nexus-federation-plugin#readme",
"main": "dist/cjs",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm",
"repository": {
"type": "git",
"url": "git+https://github.com/Korzun/nexus-federation-plugin.git"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^7.3.0",
"dripip": "^0.10.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^16.6.0",
"jest": "^28.1.3",
"markdownlint-cli": "^0.32.2",
"nexus": "^1.4.0-next.11",
"prettier": "^2.6.1",
"prettier-plugin-jsdoc": "^0.3.38",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.7.4"
},
"peerDependencies": {
"nexus": "^1.4.0-next.11"
},
"scripts": {
"build:cjs": "tsc -p 'tsconfig.build.cjs.json'",
"build:esm": "tsc -p 'tsconfig.build.esm.json'",
"build": "npm run clean && concurrently \"npm run build:*\"",
"clean": "rm -rf 'dist'",
"lint:code:fix": "npm run lint:code -- --fix",
"lint:code": "eslint 'src/**'",
"lint:markdown": "markdownlint '**/*.md'",
"lint:typescript": "npm run build -- --noEmit",
"lint": "concurrently \"npm:lint:*(!fix)\" -g",
"prepublish": "npm run build",
"release:pr": "dripip pr --json",
"release:preview": "dripip preview-or-pr --json",
"release:stable": "dripip stable --json",
"test:ci": "npm run test -- --maxWorkers 2 --coverage --ci --reporters=default",
"test:watch": "npm run test -- --watchAll",
"test": "jest"
}
}