mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 07:36:13 +02:00
tea/Resources/Private/package.json
Łukasz Uznański d4ec80de29
[FEATURE] Add frontend linting (#120)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
Co-authored-by: Oliver Klee <typo3-coding@oliverklee.de>
2020-10-31 15:04:44 +01:00

27 lines
854 B
JSON

{
"name": "tea",
"description": "",
"repository": {
"url": "https://github.com/TYPO3-Documentation/tea.git"
},
"keywords": [],
"author": "",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"lint:js": "eslint --config .eslintrc.json '../Public/**/*.js'",
"lint:js:fix": "eslint --config .eslintrc.json '../Public/**/*.js' --quiet --fix",
"lint:style": "stylelint --config stylelint.config.js ../Public/**/*.css",
"lint:style:fix": "stylelint --config stylelint.config.js ../Public/**/*.css --fix"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"stylelint": "^13",
"stylelint-config-recommended": "^3.0.0",
"stylelint-no-browser-hacks": "^1.2.1"
}
}