-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "codewars-js",
"description": "Codewars solutions in js",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint \"./**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"./**/*.ts\"",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --ignore-path ./.prettierignore",
"prepare": "husky",
"count": "ts-node ./count.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint",
"*.{js,jsx,ts,tsx,json,css,scss,md}": "npm run format"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}