-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
{
"name": "eslint-config-ts-mailonline",
"version": "0.0.0-SEMANTICALLY-RELEASED",
"description": "ESLint TS config for MailOnline",
"main": "./index.js",
"repository": "[email protected]:MailOnline/eslint-config-ts-mailonline.git",
"bugs": {
"url": "https://github.com/MailOnline/eslint-config-ts-mailonline/issues"
},
"homepage": "https://github.com/MailOnline/eslint-config-ts-mailonline",
"author": "MailOnline <[email protected]>",
"license": "MIT",
"keywords": [
"eslint",
"typescript",
"config",
"mailonline"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore './**/*.{js,jsx,ts,tsx}'",
"check-prettier-conflicts:main": "eslint-config-prettier ./index.js",
"check-prettier-conflicts:react": "eslint-config-prettier ./react.js",
"check-prettier-conflicts": "yarn run check-prettier-conflicts:main && yarn run check-prettier-conflicts:react",
"semantic-release": "semantic-release",
"test": "echo 'This project has no tests' && exit 0"
},
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^8.0.3",
"mol-conventional-changelog": "^1.4.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"semantic-release": "^22.0.8",
"typescript": "5.1.6"
},
"peerDependencies": {
"eslint": "^8.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^50.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
}
}