-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 930 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
34
35
36
37
38
{
"name": "eslint-config-standard",
"version": "6.2.0",
"description": "Standard set of ESLint rules",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"test": "yarn lint && mocha"
},
"bin": {
"eslint": "./node_modules/.bin/eslint"
},
"dependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"eslint": "^8.57.1",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-no-useless-assign": "^1.0.2",
"eslint-plugin-react": "^7.28.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"chai": "^4.5.0",
"husky": "9.1.7",
"mocha": "^10.2.0",
"react": "^18.2.0"
}
}