-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "rio-gh-actions",
"version": "1.0.4",
"description": "RIO Github Actions",
"main": "index.js",
"repository": "[email protected]:SRGSSR/rio-gh-actions.git",
"author": "Léon Chabbey <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && tsc --build",
"lint": "eslint . -c .eslintrc.js --ext .js,.jsx,.ts,.tsx"
},
"config": {
"ghooks": {
"pre-commit": "yarn build && git add lib"
}
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@srgssr/eslint-config-rio": "^1.5.0",
"@srgssr/prettier-config-rio": "1.2.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"ghooks": "^2.0.4",
"prettier": "^2.8.1",
"typescript": "~4.5.5"
}
}