forked from vuex-orm/plugin-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.28 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@vuex-orm/plugin-graphql",
"version": "1.0.0-rc.13",
"description": "Vuex-ORM Plugin to sync the data against a GraphQL API.",
"main": "dist/vuex-orm-graphql.common.js",
"module": "dist/vuex-orm-graphql.esm.js",
"unpkg": "dist/vuex-orm-graphql.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "npm run clean && npm run build:ts && npm run build:main && tsc -p . --module commonjs && npm run build:docs",
"build:ts": "tsc -p .",
"build:main": "node build/build.js",
"build:docs": "vuepress build docs",
"clean": "rm -rf dist && rm -rf lib && rm -rf dist && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp",
"lint": "tslint 'src/**/*.ts' -c tslint.json -p . --fix",
"test": "mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'test/**/*.spec.js'",
"test:watch": "mocha-webpack --webpack-config test/webpack.config.js --watch --require test/bootstrap.js 'test/**/*.spec.js'",
"test:coverage": "mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'src/**/*.js' 'test/**/*.spec.js'",
"coverage": "NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:coverage",
"prepare": "npm run lint && npm run test && npm run build && npm run build:docs",
"docs:dev": "vuepress dev docs",
"docs:deploy": "npm run build:docs && ./deploy-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/vuex-orm-graphql.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"orm",
"vuex-orm",
"vuex-orm-plugin",
"graphql"
],
"author": "Benjamin Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/vuex-orm-graphql/issues"
},
"dependencies": {
"@types/graphql": "^0.12.3",
"@types/inflection": "^1.5.28",
"@types/lodash-es": "^4.17.0",
"@vuex-orm/core": "^0.25.6",
"apollo-cache-inmemory": "^1.1.7",
"apollo-client": "^2.2.2",
"apollo-link": "^1.2.0",
"apollo-link-http": "^1.3.2",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"inflection": "^1.12.0",
"lodash-es": "^4.17.10",
"normalizr": "^3.2.4",
"vue": "^2.5.13"
},
"devDependencies": {
"@types/sinon": "^5.0.1",
"apollo-link-schema": "^1.1.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"codecov.io": "^0.1.6",
"expect": "^23.1.0",
"fork-ts-checker-webpack-plugin": "^0.4.2",
"graphql-tools": "^3.0.4",
"istanbul-instrumenter-loader": "^3.0.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-fetch": "^2.1.1",
"nyc": "^12.0.2",
"rollup": "^0.55.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"sinon": "^6.0.0",
"ts-loader": "^4.4.1",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.1",
"uglify-js": "^3.3.9",
"vuepress": "^0.8.4",
"vuex": "^3.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4",
"webpack-node-externals": "^1.6.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"instrument": false,
"sourceMap": false
}
}