-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 3.75 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nuxt-graphql-middleware",
"version": "5.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"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./utils": "./dist/utils.mjs",
"./client-options": "./dist/client-options.mjs",
"./server-options": "./dist/server-options.mjs"
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"utils": [
"./dist/utils.d.mts"
],
"client-options": [
"./dist/client-options.d.mts"
],
"server-options": [
"./dist/server-options.d.mts"
]
}
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"prepack": "npm run styles:build && nuxt-module-build build && npm run client:build",
"dev": "nuxi dev playground --trace-warnings",
"dev:layers": "nuxi dev playground-layers --trace-warnings",
"debug": "nuxi dev playground --inspect",
"dev:build": "nuxi build playground",
"dev:layers:build": "nuxi build playground-layers",
"dev:prepare": "PLAYGROUND_MODULE_BUILD=true nuxt-module-build build --stub && PLAYGROUND_MODULE_BUILD=true nuxt-module-build prepare && nuxi prepare playground-layers && nuxi prepare playground",
"dev:start": "node ./playground/.output/server/index.mjs",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit && cd ../playground-layers && vue-tsc --noEmit",
"docs:dev": "vitepress dev docs --port 5000",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port 5000",
"typedoc": "./scripts/typedoc.sh",
"typedoc:generate": "typedoc --tsconfig tsconfig.typedoc.json",
"cypress": "cypress run --e2e",
"cypress:open": "cypress open --e2e",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"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 .",
"styles:build": "postcss ./css/index.css -o ./src/runtime/css/output.css",
"styles:watch": "postcss ./css/index.css -o ./src/runtime/css/output.css --watch"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-tools/utils": "^10.8.6",
"@nuxt/devtools-kit": "^2.3.1",
"graphql-typescript-deluxe": "^0.0.13",
"minisearch": "^7.1.2",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.8",
"@nuxt/devtools": "^2.3.1",
"@nuxt/devtools-ui-kit": "^2.3.1",
"@nuxt/eslint": "^1.2.0",
"@nuxt/kit": "^3.16.2",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.16.2",
"@types/micromatch": "^4.0.9",
"cypress": "^13.12.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"mermaid": "^11.5.0",
"nuxt": "^3.16.2",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.0",
"postcss-nested-import": "^1.3.0",
"postcss-replace": "^2.0.1",
"postcss-url": "^10.1.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"tailwindcss-scoped-preflight": "^3.4.10",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.1",
"typedoc-vitepress-theme": "^1.1.2",
"vitepress": "^1.6.3",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^1.6.0"
}
}