-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.71 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
{
"name": "@ewerk/eslint-config",
"version": "1.1.0-0",
"description": "All-in-one solution for linting and code formatting in frontend projects",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "echo \"no tests yet\" && exit 1",
"lint": "eslint .",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/ewerk/eslint-config"
},
"keywords": [
"eslint",
"eslint-config",
"prettier",
"stylelint"
],
"author": "Florian Symanowski <[email protected]> (https://github.com/iceteabottle)",
"license": "MIT",
"dependencies": {
"@angular-eslint/eslint-plugin": "^14.0.3",
"@angular-eslint/eslint-plugin-template": "^14.0.3",
"@angular-eslint/template-parser": "^14.0.3",
"@babel/eslint-parser": "^7.19.1",
"eslint-config-alloy": "^4.7.0",
"eslint-plugin-change-detection-strategy": "^0.1.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-modules-newlines": "^0.0.7",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier-plugin-organize-attributes": "^0.0.5",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"typescript": "^4.8.2"
},
"devDependencies": {
"auto-changelog": "^2.4.0",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"release-it": "^15.5.0",
"stylelint": "^14.11.0"
},
"peerDependencies": {
"@angular-eslint/eslint-plugin": ">= 14",
"@angular-eslint/eslint-plugin-template": ">= 14",
"@angular-eslint/template-parser": ">= 14",
"@babel/eslint-parser": "7.x",
"@typescript-eslint/eslint-plugin": "5.x",
"@typescript-eslint/parser": "5.x",
"eslint": ">= 8.26.0",
"eslint-config-alloy": ">= 4.7.0",
"eslint-plugin-change-detection-strategy": "^0.1.1",
"eslint-plugin-html": ">= 7",
"eslint-plugin-import": "2.x",
"eslint-plugin-modules-newlines": "^0.0.7",
"eslint-plugin-simple-import-sort": "7.x",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier-plugin-organize-attributes": ">= 0.0.5",
"stylelint": ">= 14",
"stylelint-config-standard": ">= 26",
"stylelint-config-standard-scss": ">= 5",
"stylelint-order": ">= 5",
"typescript": ">= 4"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"typescript": {
"optional": true
}
}
}