generated from maximousblk/probot-nextjs-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "Casper",
"version": "1.0.0",
"private": true,
"description": "A friendly ghost that stalks techphantoms org",
"author": "Souvik De <souvikde.ns@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Tech-Phantoms/casper",
"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": {
"axios": "^0.24.0",
"next": "^12.0.7",
"probot": "^12.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"jest": "^27.4.7",
"nock": "^13.2.1",
"smee-client": "^1.2.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"engines": {
"node": ">= 14"
}
}