forked from dulnan/nuxt-graphql-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.83 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
{
"name": "nuxt-graphql-middleware",
"version": "4.0.0",
"description": "Module to perform GraphQL requests as a server middleware.",
"repository": {
"type": "git",
"url": "git+https://github.com/dulnan/nuxt-graphql-middleware.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./dist/runtime/serverOptions": {
"import": "./dist/runtime/serverOptions/index.mjs",
"types": "./dist/runtime/serverOptions/index.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build && npm run client:build",
"dev": "nuxi dev playground --trace-warnings",
"debug": "nuxi dev playground --inspect",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:start": "node ./playground/.output/server/index.mjs",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"typedoc": "typedoc --plugin typedoc-plugin-markdown --out foobar",
"typecheck": "nuxi typecheck",
"docs:dev": "vitepress dev docs --port 5000",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port 5000",
"cypress": "cypress run --e2e",
"cypress:open": "cypress open --e2e",
"test": "vitest",
"test:debug": "vitest --inspect --no-file-parallelism",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-generic-sdk": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-fragment-import/lib": "^3.0.0",
"@graphql-tools/utils": "^10.0.13",
"@nuxt/devtools-kit": "1.0.8",
"@nuxt/kit": "^3.9.3",
"cli-table": "^0.3.11",
"inquirer": "^9.2.12",
"minisearch": "^6.3.0"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.28",
"@nuxt/devtools": "^1.0.8",
"@nuxt/devtools-ui-kit": "1.0.8",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.9.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/capture-console": "^1.0.5",
"@types/cli-table": "^0.3.4",
"@types/inquirer": "^9.0.7",
"cypress": "^13.6.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdoc-to-markdown": "^8.0.0",
"nuxt": "^3.9.3",
"prettier": "^3.2.4",
"strip-ansi": "^7.1.0",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"vitepress": "^1.0.0-rc.40",
"vitest": "^1.2.1"
}
}