-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.12 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
{
"private": true,
"version": "7.0.0",
"workspaces": [
"packages/*"
],
"name": "@plugsy/all",
"scripts": {
"gen": "yarn workspaces foreach run gen",
"gen:artifacts": "yarn workspace @plugsy/core run gen:json && yarn workspace @plugsy/agent run gen:json ",
"release": "semantic-release"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": "beta"
}
],
"plugins": [
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo ${nextRelease.version} > .VERSION"
}
],
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "./packages/core/server/config-schema.json",
"name": "core-config-schema.json",
"label": "Core Config Schema"
},
{
"path": "./packages/agent/src/config-schema.json",
"name": "agent-config-schema.json",
"label": "Agent Config Schema"
}
]
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
]
]
},
"dependencies": {
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"babel-types": "^6.26.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"semantic-release": "^17.4.4",
"typescript": "^4.3.5"
}
}