-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 935 Bytes
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": "@expensify/github-actions",
"private": true,
"type": "module",
"engines": {
"node": "24.19.0",
"npm": "11.17.0"
},
"scripts": {
"fmt": "oxfmt --write .",
"lint": "eslint .",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"verify-peer-review": "tsx scripts/verifyPeerReview.ts",
"test": "tsx --test tests/*.test.ts"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@octokit/graphql": "^9.0.3",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-throttling": "^11.0.0",
"@octokit/request-error": "^7.0.0",
"@octokit/rest": "^22.0.1",
"expensify-common": "2.0.195"
},
"devDependencies": {
"@types/node": "^25.9.4",
"@typescript/native-preview": "7.0.0-dev.20260702.3",
"eslint": "^9.39.4",
"eslint-config-expensify": "^4.0.6",
"lefthook": "2.1.9",
"oxfmt": "^0.57.0",
"tsx": "^4.22.5",
"yaml": "^2.9.1"
}
}