forked from QasimWani/LeetHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 841 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 841 Bytes
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
{
"name": "LeetHub",
"version": "1.2.0",
"private": true,
"description": "Automatically integrate your code with LeetCode and GitHub",
"scripts": {
"setup": "npm i",
"format": "prettier --write .",
"format-test": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint-test": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"devDependencies": {
"ajv": "^8.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^30.2.0",
"prettier": "^3.3.3"
},
"overrides": {
"minimatch": "^10.2.1"
}
}