-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
{
"name": "@ebarooni/dev-tools",
"version": "1.0.0",
"description": "A monorepo for shared linting, formatting, and development configurations",
"license": "MIT",
"author": "Ehsan Barooni",
"homepage": "https://github.com/ebarooni/dev-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ebarooni/dev-tools.git"
},
"bugs": {
"url": "https://github.com/ebarooni/dev-tools/issues"
},
"keywords": [
"monorepo",
"linting",
"formatting",
"eslint",
"prettier",
"stylelint",
"swiftlint",
"typescript",
"shared-config"
],
"type": "module",
"engines": {
"node": ">=20.12.2"
},
"prettier": "@ebarooni/prettier-config",
"scripts": {
"prettier": "npx prettier",
"prettier:check": "npm run prettier -- . --check",
"prettier:fix": "npm run prettier -- . --write",
"eslint": "npx eslint",
"eslint:check": "npm run eslint -- .",
"eslint:fix": "npm run eslint -- . --fix"
},
"devDependencies": {
"@ebarooni/eslint-config": "file:packages/eslint-config",
"@ebarooni/prettier-config": "file:packages/prettier-config",
"@ebarooni/stylelint-config": "file:packages/stylelint-config",
"@ebarooni/swiftlint-config": "file:packages/swiftlint-config"
}
}