-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.53 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
82
83
84
85
86
87
88
89
90
{
"name": "@makerx/graphql-core",
"version": "2.2.2",
"private": false,
"description": "A set of core GraphQL utilities that MakerX uses to build GraphQL APIs",
"author": "MakerX",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0"
},
"bugs": {
"url": "https://github.com/MakerXStudio/graphql-core/issues"
},
"homepage": "https://github.com/MakerXStudio/graphql-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/graphql-core.git"
},
"scripts": {
"check-types": "tsc --noEmit",
"audit": "better-npm-audit audit",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"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",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter junit --outputFile test-results.xml"
},
"dependencies": {
"@makerx/node-common": "^1.4.0"
},
"peerDependencies": {
"@apollo/client": "*",
"express": "*",
"graphql": "*",
"graphql-shield": "*",
"graphql-ws": "*",
"lodash": "*",
"ws": "*"
},
"peerDependenciesMeta": {
"@apollo/client": {
"optional": true
},
"graphql-ws": {
"optional": true
},
"ws": {
"optional": true
}
},
"devDependencies": {
"@apollo/client": "^3.8.10",
"@makerx/eslint-config": "3.1.1",
"@makerx/prettier-config": "2.0.1",
"@makerx/ts-toolkit": "^4.0.0-beta.14",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"better-npm-audit": "^3.7.3",
"copyfiles": "^2.4.1",
"eslint": "8.56.0",
"express": "^4.18.2",
"graphql-shield": "^7.6.5",
"graphql-ws": "^5.14.3",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"rollup": "4.12.0",
"typescript": "^5.3.3",
"ws": "^8.16.0",
"prettier": "3.2.5",
"@tsconfig/node20": "20.1.2",
"@types/node": "20.11.19",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-commonjs": "25.0.7",
"tsx": "4.7.1",
"vitest": "1.3.1",
"@vitest/coverage-v8": "1.3.1"
}
}