-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "probot-nextjs-starter",
"version": "1.0.0",
"private": true,
"description": "A Probot app using NextJS",
"author": "Maximous Black <maximousblk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/maximousblk/probot-nextjs-starter",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"bot:build": "tsc ./src/bot/index.ts --noEmit false --esModuleInterop --outDir ./build",
"bot:start": "probot run ./build/index.js",
"test": "jest"
},
"dependencies": {
"next": "^13.2.3",
"probot": "^12.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"eslint": "8.31.0",
"eslint-config-next": "13.2.3",
"jest": "^27.5.1",
"nock": "^13.3.0",
"smee-client": "^1.2.3",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= 14"
}
}