forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "@nuxtjs/apollo",
"version": "4.0.1-rc.1",
"license": "MIT",
"main": "lib/module.js",
"typings": "types/index.d.ts",
"repository": "https://github.com/nuxt-community/apollo-module",
"homepage": "https://github.com/nuxt-community/apollo-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"dev2": "nuxt test/fixture-static-auth",
"dev3": "nuxt test/fixture-multi-endpoints",
"dev4": "nuxt test/fixture-local-state",
"lint": "eslint lib test",
"test": "yarn test:fixtures && yarn test:types",
"test:fixtures": "jest --forceExit",
"test:types": "tsc -p types/test",
"release": "standard-version --prerelease rc && git push --follow-tags && npm publish"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib",
"types/*.d.ts"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"cross-fetch": "^3.0.4",
"universal-cookie": "^4.0.3",
"vue-apollo": "^3.0.3",
"vue-cli-plugin-apollo": "^0.21.3",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"apollo-cache-inmemory": "^1.6.5"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@nuxt/types": "latest",
"@types/graphql": "latest",
"@types/universal-cookie": "latest",
"codecov": "^3.8.3",
"core-js": "^2.6.11",
"dotenv": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-loader": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"graphql-tag": "^2.12.6",
"jest": "latest",
"jsdom": "latest",
"nuxt-edge": "^2.16.0-27720022.54e852f",
"standard-version": "latest",
"typescript": "latest"
}
}