-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
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
66
{
"name": "transifex-pull-request-action",
"version": "5.0.5",
"private": true,
"description": "A Github Action that fetches translations from transifex and proposes a pull request to merge these.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "prettier --check \"**/*.{ts,js,json,css,scss,less,md,html}\" && eslint . --report-unused-disable-directives",
"pack": "ncc build && cp src/*.sh dist/",
"graphql": "graphql-codegen --config codegen.yml",
"all": "npm run graphql && npm run lint && npm run build && npm run pack",
"prepare": "husky",
"preversion": "npm run all && git add -A src/generated dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c2corg/transifex-pull-request-action.git"
},
"keywords": [
"actions",
"node"
],
"author": "Camptocamp Association",
"license": "MIT",
"bugs": {
"url": "https://github.com/c2corg/transifex-pull-request-action/issues"
},
"homepage": "https://github.com/c2corg/transifex-pull-request-action#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@octokit/graphql": "8.1.2",
"gettext-parser": "8.0.0",
"graphql": "16.10.0"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-document-nodes": "4.0.12",
"@graphql-codegen/typescript-operations": "4.4.0",
"@graphql-codegen/typescript-resolvers": "4.4.1",
"@octokit/graphql-schema": "15.25.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/gettext-parser": "4.0.4",
"@types/node": "22.10.10",
"@vercel/ncc": "0.38.3",
"eslint": "9.19.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
},
"lint-staged": {
"*.(ts|js|json|css|scss|md|html)": [
"prettier --write --ignore-unknown --list-different"
],
"*.ts": [
"eslint --fix --report-unused-disable-directives"
]
}
}