-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@merkle-open/eslint-config",
"description": "Default configurations for eslint",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/merkle-open/eslint-config.git"
},
"license": "MIT",
"author": "Merkle Inc.",
"private": false,
"engines": {
"node": ">=18.18.0"
},
"bugs": {
"url": "https://github.com/merkle-open/eslint-config/issues"
},
"main": "configurations/es8-browser.js",
"scripts": {
"clean": "npx -y rimraf package-lock.json node_modules",
"lint": "npm run lint:js",
"lint:js": "eslint . --ext .jsx,.js,.ts,.tsx",
"test": "npm run lint",
"docs": "node bin/write-documentation",
"prepublishOnly": "npx pkg-ok@2.3.1",
"prestart": "npx -y env-linter --versions --saveExact --dependenciesExactVersion",
"prettier": "npm-run-all prettier:*",
"prettier:es5": "prettier --config \".prettierrc.unstyled.js\" --write \"test/es5-disable-styles/**/*.js\"",
"prettier:es5node": "prettier --config \".prettierrc.unstyled.js\" --write \"test/es5-node-disable-styles/**/*.js\"",
"prettier:es6": "prettier --config \".prettierrc.unstyled.js\" --write \"test/es6-disable-styles/**/*.js\"",
"prettier:es6react": "prettier --config \".prettierrc.unstyled.js\" --write \"test/es6-react-disable-styles/**/*.js\"",
"prettier:es8": "prettier --config \".prettierrc.unstyled.js\" --write \"test/es8-disable-styles/**/*.js\"",
"prettier:typescript": "prettier --config \".prettierrc.unstyled.js\" --write \"test/typescript-disable-styles/**/*.ts\"",
"prettier:typescriptreact": "prettier --config \".prettierrc.unstyled.js\" --write \"test/typescript-react-disable-styles/**/*.tsx\"",
"start": "npm-run-all test prettier",
"update-dependencies": "npm-check-updates -u -x node-fetch --deprecated"
},
"keywords": [
"code checker",
"code linter",
"code standards",
"code style",
"eslint-config",
"eslint",
"eslintconfig",
"lint",
"es2015",
"react",
"jsx",
"typescript"
],
"devDependencies": {
"@merkle-open/prettier-config": "1.2.0",
"@merkle-open/ts-config": "1.1.0",
"acorn": "8.12.1",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"node-fetch": "2.7.0",
"npm-check-updates": "16.14.20",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"react": "18.3.1",
"typescript": "5.5.3"
},
"peerDependencies": {
"eslint": "^8.0.0",
"eslint-plugin-import": ">=2"
},
"dependencies": {
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@babel/core": "7.24.9",
"@babel/eslint-parser": "7.24.8",
"@babel/preset-react": "7.24.7",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2"
}
}