-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.3 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "eslint-config-cheminfo-react",
"version": "15.0.0",
"description": "Shared ESLint config for projects using React",
"type": "module",
"exports": {
".": "./index.js",
"./base": "./base.js"
},
"files": [
"base.js",
"index.js",
"noRestrictedGlobals.js"
],
"scripts": {
"eslint": "eslint *.js test/test.js",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/eslint-config-cheminfo-react.git"
},
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/eslint-config-cheminfo-react/issues"
},
"homepage": "https://github.com/cheminfo/eslint-config-cheminfo-react#readme",
"dependencies": {
"eslint-config-cheminfo": "^13.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0"
},
"peerDependencies": {
"eslint": "^9.15.0"
},
"devDependencies": {
"eslint": "9.15.0",
"prettier": "^3.3.3",
"react": "^18.3.1"
}
}