-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.7 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
102
103
104
105
106
{
"name": "vue-oop",
"version": "2.0.0-alpha.2",
"description": "A library based on Model-Repository patterns for Vue components. Usable for GraphQL and REST APIs.",
"keywords": [
"collections",
"commonjs",
"es6",
"graphql",
"model",
"oop",
"repository",
"rest",
"umd",
"universal",
"vue",
"webpack",
"ioc",
"container",
"loader"
],
"homepage": "https://github.com/matrunchyk/vue-oop",
"bugs": {
"url": "https://github.com/matrunchyk/vue-oop/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/matrunchyk/vue-oop.git"
},
"license": "MIT",
"author": "Serhii Matrunchyk",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"danger": "danger",
"dev": "tsc -w",
"lint": "eslint '*/**/*.{ts,tsx}' --fix",
"publish-github": "npm publish --registry https://npm.pkg.github.com/@matrunchyk",
"test": "jest --config jest.config.json",
"test:watch": "jest -w"
},
"dependencies": {
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-cache-instorage": "^0.2.5",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.17",
"collect.js": "^4.28.1",
"get-graphql-schema": "^2.1.2",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.2",
"lodash.camelcase": "^4.3.0",
"lodash.clonedeep": "^4.5.0",
"omit-deep-lodash": "^1.1.5",
"to-case": "^2.0.0",
"uuid": "^8.1.0",
"vue-cli-plugin-apollo": "0.22.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^5.1.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.3",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^12.12.41",
"@types/uuid": "^8.0.0",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"apollo-client": "^2.6.10",
"apollo-link-http-common": "^0.2.16",
"codecov": "^3.7.0",
"commitizen": "^4.1.3",
"commitlint": "^9.0.1",
"cz-conventional-changelog": "^3.2.0",
"cz-gitmoji": "^0.0.7",
"danger": "^11.2.1",
"eslint": "^7.1.0",
"husky": "^5.0.0",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"tslib": "^2.0.0",
"typescript": "^3.9.3",
"vue": "^2.6.11"
},
"peerDependencies": {
"apollo-client": "^2.6.10",
"vue": "^2.6.11 || >=3.0.0"
},
"peerDependenciesMeta": {
"apollo-client": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}