-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "@rellafella/eslint-config",
"version": "1.2.0",
"description": "Personal eslint config",
"repository": {
"type": "git",
"url": "[email protected]:rellafella/eslint-config.git"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"scripts": {
"postinstall": "node ./init.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Liam Rella",
"license": "ISC",
"dependencies": {
"@babel/eslint-parser": "^7.14.7",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.14.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-tailwindcss": "0.0.1"
},
"peerDependencies": {
"eslint": "^7.16.0",
"prettier": "^2.1.2",
"stylelint": "^13.8.0"
},
"devDependencies": {
"eslint": "^7.16.0",
"prettier": "^2.1.2",
"stylelint": "^13.8.0"
}
}