generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
62
63
64
65
{
"name": "github-helpers",
"packageManager": "bun@1.1.8",
"main": "src/main.ts",
"type": "module",
"private": true,
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@adobe/node-fetch-retry": "2.2.0",
"@octokit/graphql-schema": "15.25.0",
"@octokit/rest": "21.1.0",
"axios": "1.7.9",
"bluebird": "3.7.2",
"codeowners-utils": "1.0.2",
"js-yaml": "4.1.0",
"lodash.camelcase": "4.3.0",
"lodash.chunk": "4.2.0",
"lodash.samplesize": "4.2.0",
"lodash.union": "4.6.0",
"lodash.uniq": "4.5.0",
"micromatch": "4.0.8"
},
"devDependencies": {
"@swc/jest": "0.2.37",
"@total-typescript/ts-reset": "0.6.1",
"@types/bluebird": "3.5.42",
"@types/glob": "8.1.0",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.chunk": "4.2.9",
"@types/lodash.samplesize": "4.2.9",
"@types/lodash.union": "4.6.9",
"@types/lodash.uniq": "4.5.9",
"@types/micromatch": "4.0.9",
"@vercel/ncc": "0.38.3",
"bun-types": "1.1.43",
"eslint": "9.17.0",
"husky": "9.1.7",
"jest": "29.7.0",
"plop": "4.0.1",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1"
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"scripts": {
"create-helper": "plop helper --force",
"format": "prettier --write .",
"format-check": "prettier --check .",
"generate": "bun scripts/generate-helper-inputs.ts",
"lint": "eslint --quiet --fix ./**/*.ts src/**/*.ts test/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "husky install",
"setup": "./scripts/dev-setup.sh",
"test": "bun jest"
}
}