-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.63 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
91
{
"name": "@lunaticmuch/nextjs-graphql-schema-docs",
"version": "0.5.0",
"description": "A plugin for Next.JS that allow the rendering of a GraphQL Schema",
"keywords": [
"nextjs",
"graphql",
"documentation",
"graphql documentation",
"plugin",
"extension",
"next.js"
],
"homepage": "https://github.com/LunaticMuch/nextjs-graphql-schema-docs#readme",
"bugs": {
"url": "https://github.com/LunaticMuch/nextjs-graphql-schema-docs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LunaticMuch/nextjs-graphql-schema-docs.git"
},
"license": "MIT",
"author": "Stefano Cislaghi <[email protected]> (http://stefanocislaghi.com/)",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./lib",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . --ignore-pattern \"example\" --max-warnings 0 --report-unused-disable-directives",
"lint:packages": "npm find-dupes",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepack": "npm run build",
"start": "nodemon",
"start:example": "npm run clean && npm run build && npm run dev --prefix ./example",
"test": "exit 0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^8.0.0",
"@graphql-tools/load": "^8.0.0",
"@graphql-tools/url-loader": "^8.0.0",
"graphql": "^16.6.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.40.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsonc": "^2.8.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-vitest": "^0.2.5",
"eslint-plugin-yml": "^1.7.0",
"jsonc-eslint-parser": "^2.3.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.2",
"rimraf": "^5.0.1",
"safe-stable-stringify": "^2.4.3",
"semantic-release": "^21.0.2",
"stringify-object": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18",
"npm": ">=9.5.0"
}
}