This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.65 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@seedcompany/eslint-plugin",
"version": "1.0.0",
"description": "Seed Company's ESLint config / rules",
"keywords": [
"eslint",
"eslintconfig",
"eslintplugin",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/seedcompany/eslint-plugin.git"
},
"bugs": {
"url": "https://github.com/seedcompany/eslint-plugin/issues"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rimraf ./dist && tsc -b tsconfig.build.json",
"lint": "eslint . --ext .ts --fix",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@typescript-eslint/utils": "^5.28.0",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"ignore": "^5.2.0",
"prettier": "^2.7.0",
"pupa": "^2.1.1",
"type-fest": "^2.13.1"
},
"peerDependencies": {
"eslint": "^8.0.0",
"prettier": "^2.0.0",
"react": "^16.14.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/prompt-cli": "^16.2.1",
"@seedcompany/eslint-plugin": "*",
"@types/common-tags": "^1.8.1",
"@types/eslint": "^8.4.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.42",
"@typescript-eslint/types": "^5.28.0",
"common-tags": "^1.8.2",
"husky": "^4.3.8",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"lint-staged": "^12.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.7.3"
},
"resolutions": {
"npm/chalk": "^4.1.2",
"@seedcompany/eslint-plugin": "portal:."
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRunner": "jest-circus/runner",
"moduleNameMapper": {
"eslint/use-at-your-own-risk": "eslint/lib/unsupported-api.js"
}
},
"publishConfig": {
"access": "public"
}
}