-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
{
"name": "gha-conductor",
"version": "1.20.8",
"private": true,
"description": "Github Actions for monorepo setup",
"author": "mdolinin",
"license": "ISC",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "tsc && probot run ./lib/index.js",
"bot:start": "node ./lib/main.js",
"test": "jest",
"generate": "node scripts/generate.js",
"db:migrate": "dotenv -- cross-var pg-migrations apply --directory migrations --database %DATABASE_URL%",
"db:generate": "dotenv -- cross-var npx @databases/pg-schema-cli --database %DATABASE_URL% --directory ./src/__generated__",
"simulate": "node_modules/.bin/probot receive -e pull_request -p test/fixtures/pull_request.labeled.json ./lib/index.js"
},
"dependencies": {
"@databases/pg": "^5.5.0",
"@databases/pg-schema-cli": "^4.4.0",
"@databases/pg-typed": "^4.4.1",
"ajv": "^8.17.1",
"dd-trace": "^5.33.1",
"glob": "^11.0.1",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^15.0.4",
"probot": "^13.4.3",
"simple-git": "^3.27.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@databases/pg-migrations": "^5.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.12.0",
"@types/pino-std-serializers": "^4.0.0",
"@types/readable-stream": "^4.0.18",
"cross-var": "^1.1.0",
"jest": "^29.0.0",
"nock": "^14.0.0",
"semantic-release": "^24.2.1",
"smee-client": "^2.0.4",
"ts-jest": "^29.2.5",
"tsc-hooks": "^1.1.2",
"typescript": "^5.7.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/CHANGELOG.md",
"package.json"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"engines": {
"node": ">= 18"
},
"packageManager": "[email protected]"
}