-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.56 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
{
"private": true,
"name": "spryker-master-suite",
"description": "Spryker Master Suite",
"author": {
"name": "Spryker Systems GmbH",
"email": "info@spryker.com",
"url": "https://spryker.com/"
},
"scripts": {
"formatter": "npm run formatter:run -- --check",
"formatter:fix": "npm run formatter:run -- --write",
"formatter:run": "prettier --config node_modules/@spryker/frontend-config.prettier/.prettierrc.json '**/*.(scss|css|less|js|ts|json|html|yml|yaml|xml)'",
"stylelint": "stylelint '**/*.scss' '!**/DateTimeConfiguratorPageExample/**/*.scss' '!vendor/**/*.scss'",
"stylelint:fix": "stylelint '**/*.scss' '!**/DateTimeConfiguratorPageExample/**/*.scss'",
"lint": "eslint --no-error-on-unmatched-pattern './Bundles/**/Yves/*/Theme/**/*.{js,ts}'",
"lint:fix": "eslint --no-error-on-unmatched-pattern --fix './Bundles/**/Yves/*/Theme/**/*.{js,ts}'"
},
"engines": {
"node": ">=18.13.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.13.1",
"@spryker/frontend-config.eslint": "~0.1.0",
"@spryker/frontend-config.prettier": "~0.0.5",
"@spryker/frontend-config.stylelint": "~0.0.6",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "~8.57.0",
"eslint-plugin-deprecation": "~2.0.0",
"prettier": "~2.7.1",
"stylelint": "~16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "~5.4.2"
}
}