-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
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
{
"name": "abruno-dev-config",
"version": "1.0.10",
"description": "Modern ESLint, TypeScript, and Prettier configurations for TypeScript/JavaScript development",
"repository": {
"type": "git",
"url": "https://github.com/anthonybruno/dev-config.git"
},
"author": "Anthony Bruno",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "index.js",
"exports": {
"./eslint": "./eslint-config/index.js",
"./eslint/base": "./eslint-config/index.js",
"./eslint/node": "./eslint-config/node.js",
"./eslint/react": "./eslint-config/react.js",
"./eslint/data-processing": "./eslint-config/data-processing.js",
"./prettier": "./prettier/.prettierrc.js",
"./tsconfig": "./tsconfig/tsconfig.base.json",
"./commitlint.config": "./commitlint.config.js"
},
"files": [
"eslint-config",
"prettier",
"tsconfig",
"commitlint.config.js"
],
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=8.0.0",
"@typescript-eslint/parser": ">=8.0.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": ">=8.0.0",
"eslint-plugin-import": ">=2.0.0",
"eslint-plugin-simple-import-sort": ">=9.0.0",
"typescript": ">=5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"commitlint": "^19.8.1",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"semantic-release": "^24.2.7",
"typescript": "^5.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
}
}