-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "@quasar/quasar-app-extension-apollo",
"version": "2.2.3",
"description": "A Quasar app extension to add GraphQL support using Apollo Client.",
"keywords": [
"quasar",
"graphql",
"apollo"
],
"contributors": [
"Scott Molinari <[email protected]>",
"Ejez <[email protected]>",
"Paolo 'Callo' Caleffi <[email protected]>"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/quasarframework/app-extension-apollo"
},
"bugs": "https://github.com/quasarframework/app-extension-apollo/issues",
"homepage": "https://quasar.dev",
"scripts": {
"lint": "eslint --ext .js,.ts ./src/",
"format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\"",
"deploy:beta": "yarn publish --tag beta",
"deploy:latest": "yarn publish --tag latest"
},
"files": [
"/src",
"/lib"
],
"devDependencies": {
"@apollo/client": "^3.8.6",
"@quasar/app-vite": "^1.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vue/apollo-composable": "^4.0.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-lodash-template": "^0.21.0",
"graphql": "^16.8.1",
"graphql-sse": "^2.3.0",
"graphql-ws": "^5.14.0",
"prettier": "^3.0.3",
"quasar": "^2.0.0",
"typescript": "^5.2.2",
"vue": "^3.3.4"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"@vue/apollo-composable": "^4.0.0",
"graphql": "^15.0.0 || ^16.0.0",
"graphql-sse": "^2.3.0",
"graphql-ws": "^5.14.0",
"quasar": "^2.0.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
},
"graphql-sse": {
"optional": true
}
}
}