forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@nuxtjs/apollo",
"version": "4.0.1-rc.5",
"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"
},
"files": [
"lib",
"types/*.d.ts"
],
"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"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"universal-cookie": "^4.0.4",
"vue-apollo": "^3.0.5",
"vue-cli-plugin-apollo": "^0.22.2",
"webpack-node-externals": "^2.5.2"
},
"peerDependencies": {
"apollo-cache-inmemory": "^1.6.6"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxt/types": "latest",
"@nuxtjs/eslint-config": "latest",
"@types/graphql": "latest",
"@types/universal-cookie": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"dotenv": "latest",
"eslint": "latest",
"graphql-tag": "latest",
"jest": "latest",
"jsdom": "latest",
"nuxt-edge": "latest",
"standard-version": "latest",
"typescript": "latest"
}
}