-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (35 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
{
"name": "pull-request-analysis-sample",
"private": true,
"scripts": {
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check '*.js' '**/*.ts'",
"lint-fix": "run-p lint-fix:*",
"lint-fix:eslint": "eslint . --fix",
"lint-fix:prettier": "prettier --write '*.js' '**/*.ts'"
},
"devDependencies": {
"@types/async-retry": "^1.4.2",
"@types/node": "^14.14.11",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@google-cloud/bigquery": "^5.5.0",
"async-retry": "^1.3.1",
"date-fns": "^2.16.1",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"tmp": "^0.2.1"
}
}