This repository has been archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "good-1st-issue",
"version": "0.0.0",
"private": true,
"description": "A Probot app to tweet good first issues",
"author": "harshraj8843",
"license": "MIT",
"homepage": "https://github.com/codinasion/good-1st-issue-app",
"keywords": [
"good first issue",
"probot",
"twitter"
],
"scripts": {
"build-app": "tsc",
"start-app": "tsc && probot run ./lib/index.js",
"simulate-app": "tsc && sh simulate.sh",
"test": "jest",
"dev": "next dev",
"build": "next build",
"serve": "next start",
"lint": "next lint",
"build-all": "tsc && next build"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.97",
"@mui/material": "^5.10.3",
"@mui/styles": "^5.7.0",
"dummy-code": "^0.1.2",
"next": "12.2.5",
"node-fetch": "2.6.7",
"probot": "^12.2.4",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"@types/pino-std-serializers": "^4.0.0",
"eslint": "^8.26.0",
"jest": "^29.0.0",
"nock": "^13.0.5",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}