-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "vue-apollo-monorepo",
"version": "4.2.1",
"private": true,
"scripts": {
"build": "pnpm run -r --filter \"vue-apollo*\" --filter \"@vue/apollo*\" build",
"test": "pnpm run -r --sequential test",
"test:unit": "pnpm run -r test:unit",
"test:types": "pnpm run -r test:types",
"lint": "eslint . --ext js,vue,ts",
"release": "pnpm run build && pnpm run test && sheep release -b v4",
"docs:dev": "pnpm run -r --filter \"private-vue-apollo-docs\" dev"
},
"resolutions": {
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@akryum/sheep": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
"conventional-changelog-cli": "^2.2.2",
"core-js": "^3.23.2",
"esbuild": "^0.8.57",
"esbuild-node-externals": "^1.4.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.20.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"eslint-scope": "^5",
"serialize-javascript": "^6.0.0",
"subscriptions-transport-ws": "^0.9"
},
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"@types/react",
"react",
"react-dom",
"eslint",
"typescript",
"vue-template-compiler",
"graphql",
"vue-class-component",
"@algolia/client-search"
],
"allowedVersions": {
"eslint": "*",
"esbuild": "*",
"vue": "*"
}
}
}
}