forked from spryker-shop/b2c-demo-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.27 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"name": "spryker-b2c-demo-shop",
"description": "Spryker B2C Demo Shop project",
"author": {
"name": "Spryker Systems GmbH",
"email": "[email protected]",
"url": "https://spryker.com/"
},
"workspaces": [
"vendor/spryker/*",
"vendor/spryker/*/assets/Zed"
],
"scripts": {
"yves": "node ./frontend/build development",
"yves:watch": "node ./frontend/build development-watch",
"yves:production": "node ./frontend/build production",
"yves:help": "node ./frontend/libs/command-line-parser --help",
"yves:stylelint": "node ./frontend/libs/stylelint.mjs",
"yves:stylelint:fix": "node ./frontend/libs/stylelint.mjs --fix",
"yves:lint": "eslint --no-error-on-unmatched-pattern './src/Pyz/Yves/**/Theme/**/*.{js,ts}'",
"yves:lint:fix": "eslint --no-error-on-unmatched-pattern --fix './src/Pyz/Yves/**/Theme/**/*.{js,ts}'",
"formatter": "prettier --check '**/*.(scss|css|less|js|ts|json|html)'",
"formatter:fix": "prettier --write '**/*.(scss|css|less|js|ts|json|html)'",
"zed": "node ./node_modules/@spryker/oryx-for-zed/build",
"zed:watch": "node ./node_modules/@spryker/oryx-for-zed/build --dev",
"zed:production": "node ./node_modules/@spryker/oryx-for-zed/build --prod"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"autonumeric": "~4.6.0",
"jquery": "~3.6.3",
"jquery-datetimepicker": "~2.5.21",
"lodash-es": "~4.17.21",
"nouislider": "~11.1.0",
"password-validator": "~5.3.0",
"select2": "~4.0.11",
"slick-carousel": "~1.8.1"
},
"devDependencies": {
"@babel/core": "~7.24.3",
"@babel/plugin-proposal-class-properties": "~7.17.12",
"@babel/plugin-transform-runtime": "~7.17.12",
"@babel/preset-env": "~7.20.2",
"@babel/preset-typescript": "~7.17.12",
"@jsdevtools/file-path-filter": "~3.0.2",
"@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",
"@spryker/oryx-for-zed": "~3.4.2",
"@typescript-eslint/eslint-plugin": "~7.3.1",
"@typescript-eslint/parser": "~7.3.1",
"autoprefixer": "~10.4.14",
"babel-loader": "~9.1.3",
"clean-webpack-plugin": "~4.0.0",
"commander": "~4.0.1",
"compression-webpack-plugin": "~11.1.0",
"copy-webpack-plugin": "~12.0.2",
"css-loader": "~6.10.0",
"css-minimizer-webpack-plugin": "~6.0.0",
"eslint": "~8.57.0",
"eslint-plugin-deprecation": "~2.0.0",
"fast-glob": "~3.3.2",
"mini-css-extract-plugin": "~2.7.2",
"npm-run-all": "~4.1.5",
"postcss": "~8.4.24",
"postcss-loader": "~7.3.2",
"prettier": "~2.8.7",
"sass": "~1.51.0",
"sass-loader": "~10.2.0",
"sass-resources-loader": "~2.2.5",
"stylelint": "~16.2.1",
"stylelint-config-standard-scss": "~13.0.0",
"terser-webpack-plugin": "~5.3.8",
"typescript": "~5.4.2",
"webpack": "~5.88.2",
"webpack-merge": "~5.10.0"
}
}