-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.25 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "lint-configs",
"version": "1.0.3",
"description": "Configurations for ESLint and StyleLint",
"homepage": "https://github.com/rahil-p/lint-configs#readme",
"repository": "rahil-p/lint-configs.git",
"bugs": "https://github.com/rahil-p/lint-configs/issues",
"author": {
"name": "Rahil Patel",
"url": "https://github.com/rahil-p"
},
"license": "MIT",
"packageManager": "yarn@3.2.3",
"private": true,
"workspaces": [
"dev/*"
],
"scripts": {
"lint": "yarn run lint:syncpack && yarn run lint:code",
"lint:code": "yarn workspaces foreach --exclude lint-configs ${args:-} run lint",
"lint:syncpack": "syncpack format"
},
"devDependencies": {
"@rahil-p/eslint-config-base": "workspace:^",
"@rahil-p/eslint-config-test": "workspace:^",
"@rahil-p/eslint-config-typescript": "workspace:^",
"depcheck": "^1.4.3",
"eslint": "^8.14.0",
"prettier": "^3.2.5",
"syncpack": "^6.2.1",
"typescript": "^4.7.4",
"v8-compile-cache": "^2.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"es6": true,
"node": true
},
"extends": [
"@rahil-p/eslint-config-base"
],
"ignorePatterns": [
"**/build/**/*",
"**/dist/**/*"
],
"overrides": [
{
"files": [
"**/*.ts"
],
"extends": [
"@rahil-p/eslint-config-base",
"@rahil-p/eslint-config-typescript"
],
"parserOptions": {
"project": "./tsconfig.base.json"
}
},
{
"files": [
"**/*.tsx"
],
"extends": [
"@rahil-p/eslint-config-base",
"@rahil-p/eslint-config-typescript",
"@rahil-p/eslint-config-react"
]
}
]
},
"syncpack": {
"dev": true,
"peer": true,
"prod": true,
"resolutions": true,
"indent": "\t",
"sortAz": [
"scripts",
"resolutions",
"dependencies",
"optionalDependencies",
"peerDependencies",
"devDependencies",
"protobufDependencies"
],
"sortFirst": [
"name",
"version",
"description",
"type",
"main",
"files",
"bin",
"homepage",
"repository",
"bugs",
"author",
"contributors",
"license",
"packageManager",
"private",
"publishConfig",
"workspaces",
"scripts",
"resolutions",
"dependencies",
"optionalDependencies",
"peerDependencies",
"devDependencies",
"protobufDependencies"
]
}
}