forked from lewebsimple/nuxt3-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 876 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 876 Bytes
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
{
"name": "@nuxt3-graphql/minimal",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"lint": "eslint --ext .js,.ts,.vue --fix .",
"preversion": "yarn lint",
"version": "git add -A .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@envelop/core": "^1.6.5",
"@graphql-codegen/typescript": "^2.4.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@graphql-codegen/typescript-vue-urql": "^2.2.1",
"@graphql-codegen/urql-introspection": "^2.1.0",
"@nuxt3-graphql/codegen": "link:../../packages/codegen",
"@nuxt3-graphql/urql": "link:../../packages/urql",
"@urql/exchange-graphcache": "^4.3.6",
"@urql/vue": "^0.6.1",
"graphql": "^15",
"nexus": "^1.1.0",
"nuxt3": "latest"
}
}