-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.71 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
81
82
83
84
85
{
"name": "@latipun7/eslint-config",
"version": "1.0.4",
"description": "🥷 Nerdy Ninja's shareable ESLint configuration 👓",
"license": "MIT",
"homepage": "https://github.com/latipun7/library/tree/main/configs/eslint#readme",
"repository": {
"type": "git",
"url": "https://github.com/latipun7/library.git",
"directory": "configs/eslint"
},
"author": {
"name": "Latif Sulistyo",
"email": "[email protected]"
},
"type": "commonjs",
"engines": {
"node": ">=14.8.0"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"eslintrc",
"config",
"configuration",
"shareable"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --project tsconfig.build.json --watch",
"build": "tsc --project tsconfig.build.json",
"test": "yarn rules-eslint & yarn rules-import & yarn rules-jest & yarn rules-next & yarn rules-react & yarn rules-testing & yarn rules-typescript",
"rules-eslint": "eslint-find-rules --deprecated --unused ./dist/eslint/index.js",
"rules-import": "eslint-find-rules --deprecated --unused ./dist/import/index.js --no-core",
"rules-jest": "eslint-find-rules --deprecated --unused ./dist/jest/index.js --no-core",
"rules-next": "eslint-find-rules --deprecated --unused ./dist/next/index.js --no-core",
"rules-react": "eslint-find-rules --deprecated --unused ./dist/react/index.js --no-core",
"rules-testing": "eslint-find-rules --deprecated --unused ./dist/testing-library/index.js --no-core",
"rules-typescript": "eslint-find-rules --deprecated --unused ./dist/typescript/index.js --no-core",
"semantic-release": "semantic-release"
},
"dependencies": {
"@next/eslint-plugin-next": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"confusing-browser-globals": "^1.0.11",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"read-pkg-up": "^7.0.1"
},
"devDependencies": {
"@types/confusing-browser-globals": "^1.0.0",
"eslint-find-rules": "^4.0.0"
},
"peerDependencies": {
"eslint": "^8.4",
"prettier": "^2.5",
"typescript": "^4.5"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"typescript": {
"optional": true
}
}
}