-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 867 Bytes
/
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
{
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-editorconfig": "2.1.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-sonarjs": "0.5.0",
"stylelint": "13.8.0",
"stylelint-config-standard": "20.0.0",
"cypress": "4.0.2",
"cypress-multi-reporters": "1.2.4",
"minimist": "1.2.3",
"mocha": "7.0.1",
"mochawesome": "4.1.0",
"mochawesome-merge": "4.0.0",
"mochawesome-report-generator": "4.1.0"
},
"scripts": {
"test": "cypress run",
"lint": "eslint --no-inline-config --ext .js,.jsx --no-error-on-unmatched-pattern -c .eslintrc.json .",
"lint:styles": "stylelint **/*.css --config .stylelintrc.json --ignore-disables --allow-empty-input",
"cypress:open": "cypress open"
},
"dependencies": {
"eslint-config-trybe-fundamentals": "1.1.0"
}
}