-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
96 lines (96 loc) · 2.68 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
{
"name": "create-issue-branch",
"version": "0.0.0-development",
"description": "Creates a new branch after assigning an issue",
"author": "Rob van der Leek <[email protected]> (https://twitter.com/robvanderleek)",
"license": "ISC",
"repository": "https://github.com/robvanderleek/create-issue-branch.git",
"homepage": "https://github.com/robvanderleek/create-issue-branch",
"bugs": "https://github.com/robvanderleek/create-issue-branch/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"release": {
"repositoryUrl": "https://github.com/robvanderleek/create-issue-branch",
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github",
{
"publish": true
}
]
]
},
"scripts": {
"prepare": "mkver ./src/version.ts",
"start": "next start",
"dev": "next dev",
"build": "next build",
"compile": "tsc --noemit false",
"test": "jest",
"coverage": "jest --collect-coverage",
"probot:start": "yarn compile && NODE_OPTIONS='--max_old_space_size=490' probot run ./build/probot.js",
"server:start": "yarn compile && NODE_OPTIONS='--max_old_space_size=490' node ./build/server.js",
"action:dist": "yarn compile && esbuild build/action.js --bundle --platform=node --outfile=action-dist/index.js",
"server:dist": "yarn compile && esbuild build/server.js --bundle --platform=node --outfile=server-dist/index.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@analytics/google-analytics": "^1.0.3",
"@probot/adapter-github-actions": "^4.0.0",
"@types/dlv": "^1.1.4",
"analytics": "^0.8.11",
"is-plain-object": "^5.0.0",
"js-tokens": "^9.0.0",
"mongodb": "^6.8.1",
"next": "^14.2.12",
"node-fetch": "^2.6.1",
"probot": "^13.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"slice": "^1.0.0",
"wildcard-match": "^5.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node-fetch": "^2.6.10",
"@types/react": "18.3.7",
"esbuild": "^0.23.1",
"@vercel/node": "^3.2.14",
"jest": "^29.7.0",
"mkver": "^2.1.0",
"nock": "14.0.0-beta.14",
"nodemon": "^3.1.5",
"smee-client": "^2.0.1",
"ts-jest": "^29.1.5",
"typescript": "^5.6.2"
},
"engines": {
"node": ">= 20.x"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 10000
}
}