-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "@dreamit/graphql-server",
"version": "4.12.4",
"description": "A GraphQL server written in NodeJS/Typescript.",
"scripts": {
"build": "tsup-node",
"check": "tsc --noEmit --pretty",
"checkformat": "prettier --check .",
"format": "prettier --cache --write .",
"lint": "oxlint -c .oxlintrc.json",
"lintfix": "oxlint -c .oxlintrc.json --fix",
"mutationtest": "stryker run",
"mutationtestCI": "stryker run --incremental --incrementalFile stryker-incremental.json",
"prepack": "npm run build",
"test": "vitest run --coverage"
},
"type": "module",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreamit-de/graphql-server.git"
},
"keywords": [
"GraphQL",
"server"
],
"author": "dreamIT",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamit-de/graphql-server/issues"
},
"homepage": "https://github.com/dreamit-de/graphql-server#readme",
"devDependencies": {
"@dreamit/graphql-testing": "0.1.1",
"@fast-check/vitest": "0.1.5",
"@sgohlke/stryker-log-ignorer": "2.0.2",
"@stryker-mutator/vitest-runner": "8.7.1",
"@types/content-type": "1.1.8",
"@types/node": "22.13.4",
"@vitest/coverage-v8": "2.1.9",
"fast-check": "3.23.2",
"oxlint": "0.15.10",
"prettier": "3.5.1",
"prettier-plugin-organize-imports": "4.1.0",
"tsup": "8.3.6",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.9"
},
"peerDependencies": {
"@dreamit/funpara": "^1.0.0",
"@dreamit/graphql-server-base": "^2.6.0",
"graphql": "^16.0.0"
},
"engines": {
"node": ">=v6.13.0"
},
"overrides": {
"esbuild": "0.25.0"
}
}