-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
89 lines (89 loc) · 2.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vue-cli-plugin-apollo",
"version": "0.22.2",
"description": "vue-cli 3 plugin to add Apollo and GraphQL",
"main": "index.js",
"types": "./types.d.ts",
"scripts": {
"dev": "nodemon --exec 'npm run build' --watch graphql-client/src",
"build": "yarn build:graphql-client && yarn build:client-addon",
"build:graphql-client": "babel graphql-client/src --out-dir graphql-client/dist",
"build:client-addon": "cd ./client-addon && yarn build && cd ../",
"prepublishOnly": "npm run test && npm run build",
"test": "npm run test:eslint && cd ./client-addon npm run lint",
"test:eslint": "eslint --ext .js .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-cli-plugin-apollo.git"
},
"keywords": [
"vue",
"vue-cli",
"apollo",
"graphql"
],
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Akryum/vue-cli-plugin-apollo/issues"
},
"homepage": "https://github.com/Akryum/vue-cli-plugin-apollo#readme",
"dependencies": {
"apollo": "^2.28.2",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.17",
"apollo-link-persisted-queries": "^0.2.2",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "^2.14.2",
"apollo-upload-client": "^13.0.0",
"apollo-utilities": "^1.3.4",
"chalk": "^4.0.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"execa": "^4.0.2",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"graphql": "^15.1.0",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^6.0.9",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"subscriptions-transport-ws": "^0.9.16",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.0.0",
"vuepress": "^0.14.8"
},
"peerDependencies": {
"@vue/cli-shared-utils": "^3.0.0 || ^4.0.0-0",
"typescript": ">=2.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=10"
}
}