-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 988 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": "git-workshop",
"private": true,
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"test": "jest",
"test:coverage": "jest --collectCoverage --coverageDirectory=coverage --coverageReporters=html --coverageReporters=text",
"lint": "eslint src/**/* --max-warnings=0",
"format": "prettier . --check"
},
"devDependencies": {
"@code-pushup/eslint-config": "^0.6.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-functional": "^6.5.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unicorn": "^53.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}