-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 869 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
32
33
{
"name": "katalogue",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@swc/core": "^1.3.19",
"@swc/jest": "^0.2.23",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{js,ts,json,md}": "eslint --fix"
}
}