-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "flow-typed-pr-bot",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"start": "yarn clean && babel src --out-dir dist && concurrently \"babel src --out-dir dist -w\" \"nodemon ./dist/index.js\"",
"build": "yarn clean && babel src --out-dir dist",
"start:prod": "node ./dist/index.js"
},
"dependencies": {
"@koa/cors": "^3.3.0",
"@octokit/rest": "^19.0.4",
"axios": "^1.1.2",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-router": "^12.0.0",
"koa-useragent": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-flow": "^7.18.6",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-bzc": "^1.0.10",
"eslint-plugin-fb-flow": "^0.0.4",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.6.0",
"flow-bin": "^0.188.2",
"nodemon": "^2.0.19"
}
}