-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "@edx/stylelint-config-edx",
"version": "1.1.2",
"description": "Stylelint configs for edX Sass files.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/stylelint-config-edx.git"
},
"keywords": [
"edx",
"linter",
"sass",
"stylelint",
"stylelint-config"
],
"homepage": "https://github.com/openedx/edx-stylelint-config-edx#readme",
"dependencies": {
"stylelint": "^15.6.0",
"stylelint-config-recommended-scss": "^11.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-scss": "^4.1.0"
},
"main": "stylelint.config.js",
"files": [
"stylelint.config.js"
],
"scripts": {
"lint-js": "eslint . --ignore-path .gitignore",
"quality": "npm run lint-js",
"test": "npm run quality"
},
"devDependencies": {
"@edx/eslint-config": "^3.0.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0"
}
}