-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 914 Bytes
/
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
{
"name": "ci-cd-example",
"version": "1.0.0",
"description": "Ejemplo de una pipeline CI/CD",
"scripts": {
"prepare": "husky"
},
"author": "ISDI Coders",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cucumber": "^2.0.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5"
},
"lint-staged": {
"backend/**/*.{ts,js,json}": [
"cd backend && npm run lint-staged"
],
"frontend/**/*.{ts,js,json}": [
"cd frontend && npm run lint-staged"
]
}
}