-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.77 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.77 KB
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
82
83
{
"name": "@makerx/graphql-apollo-server",
"version": "2.0.0-beta.0",
"private": false,
"description": "A set of MakerX plugins for Apollo Server",
"author": "MakerX",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0"
},
"bugs": {
"url": "https://github.com/MakerXStudio/graphql-apollo-server/issues"
},
"homepage": "https://github.com/MakerXStudio/graphql-apollo-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/graphql-apollo-server.git"
},
"scripts": {
"audit": "better-npm-audit audit",
"check-types": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter junit --outputFile test-results.xml",
"codegen": "graphql-codegen --config codegen-testing.ts",
"build": "run-s build:*",
"build:0-clean": "rimraf dist coverage",
"build:1-lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"build:2-check-types": "tsc -p tsconfig.json",
"build:3-build": "rollup -c --configPlugin typescript",
"build:4-copy-pkg-json": "tstk copy-package-json -c",
"build:5-copy-readme": "copyfiles ./README.md ./dist",
"build:6-check-exports": "attw --pack dist",
"format": "prettier --write ."
},
"peerDependencies": {
"@apollo/server": ">=4",
"@graphql-typed-document-node/core": ">=3.2.0",
"@makerx/graphql-core": ">=2",
"@makerx/node-common": ">=1",
"graphql": ">=16"
},
"devDependencies": {
"@apollo/server": "^5.5.0",
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@graphql-codegen/cli": "^6.3.1",
"@graphql-codegen/client-preset": "^5.3.0",
"@graphql-codegen/typescript-resolvers": "^5.1.8",
"@makerx/eslint-config": "4.2.0",
"@makerx/prettier-config": "2.0.1",
"@makerx/ts-config": "^1.0.1",
"@makerx/ts-toolkit": "^5.0.0-beta.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@tsconfig/node20": "^20.1.9",
"@types/lodash.omit": "^4.5.9",
"@types/node": "25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "4.1.5",
"better-npm-audit": "^3.11.0",
"copyfiles": "^2.4.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"npm-run-all": "^4.1.5",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"rollup": "4.60.2",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.60.2"
}
}