forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 KB
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
{
"name": "@nuxtjs/apollo",
"version": "4.0.0-rc3",
"license": "MIT",
"main": "lib/module.js",
"repository": "https://github.com/nuxt-community/apollo-module",
"homepage": "https://github.com/nuxt-community/apollo-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "NODE_ENV=production nuxt test/fixture",
"dev2": "NODE_ENV=production nuxt test/fixture-static-auth",
"dev3": "NODE_ENV=production nuxt test/fixture-multi-endpoints",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"cookie": "^0.3.1",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.0",
"vue-apollo": "^3.0.0-beta.26",
"vue-cli-plugin-apollo": "^0.18.0"
},
"peerDependencies": {
"apollo-cache-inmemory": "^1.3.10"
},
"devDependencies": {
"codecov": "latest",
"dotenv": "latest",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "latest",
"graphql-tag": "^2.10.0",
"jest": "latest",
"jsdom": "^13.0.0",
"nuxt": "^2.3.2",
"standard-version": "latest"
}
}