-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "@yext/eslint-config",
"version": "1.0.2",
"description": "Yext's ESLint configurations for Typescript and React repos",
"keywords": [
"eslint",
"eslintconfig",
"yext",
"typescript",
"react"
],
"files": [
"src",
"THIRD-PARTY-NOTICES",
"postinstall.js"
],
"exports": {
".": "./src/typescript.js",
"./typescript-react": "./src/typescript-react.js"
},
"scripts": {
"generate-notices": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES --overwrite",
"postinstall": "node postinstall.js",
"prettier-write": "prettier --write .",
"prettier-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/yext/eslint-config.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/yext/eslint-config/issues"
},
"homepage": "https://github.com/yext/eslint-config#readme",
"dependencies": {
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@yext/eslint-plugin-export-star": "^1.0.2",
"eslint": ">= 7",
"eslint-plugin-react-perf": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.14"
},
"devDependencies": {
"generate-license-file": "^1.3.0",
"prettier": "2.7.1"
}
}