-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
96 lines (96 loc) · 3.21 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "prestashop-hummingbird-dev-tools",
"version": "0.1.7",
"description": "Tools to help while developing the Hummingbird theme",
"engines": {
"node": ">= 14"
},
"main": "index.js",
"scripts": {
"build-analyze": "webpack --progress --mode=production --analyze",
"build": "webpack --progress --mode=production",
"watch": "webpack --progress --watch --mode=development",
"dev": "webpack serve --progress --mode=development",
"scss-lint": "stylelint \"**/*.scss\" --formatter verbose",
"scss-fix": "stylelint \"**/*.scss\" --fix",
"lint": "eslint -c .eslintrc.js --ext .js,.ts ./src/js",
"test": "jest",
"coverage": "jest --collect-coverage",
"lint-fix": "eslint -c .eslintrc.js --ext .js,.ts ./src/js --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "PrestaShop",
"license": "AFL-3.0",
"devDependencies": {
"@storybook/addon-a11y": "^8.3.3",
"@storybook/addon-actions": "^8.3.3",
"@storybook/addon-essentials": "^8.3.3",
"@storybook/addon-links": "^8.3.3",
"@storybook/builder-webpack5": "^8.3.3",
"@storybook/html": "^8.3.3",
"@storybook/manager-webpack5": "^6.5.16",
"@types/bootstrap": "^5.2.10",
"@types/jest": "^29.5.13",
"@types/sprintf-js": "^1.1.4",
"@types/wnumb": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"bootstrap-touchspin": "^4.7.3",
"bourbon": "^7.3.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssjanus": "^2.3.0",
"dotenv": "^16.4.5",
"esbuild-loader": "^2.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"expose-loader": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"hot-accept-webpack-plugin": "^4.0.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.5",
"postcss-scss": "^4.0.9",
"sass-embedded": "^1.79.3",
"sass-loader": "^16.0.2",
"smarty4js": "^0.1.8",
"stylelint": "^14.16.1",
"stylelint-config-prestashop": "^1.0.7",
"ts-jest": "^29.2.5",
"typescript": "~5.5.4",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-font-preload-plugin": "^1.5.0",
"webpack-merge": "^6.0.1",
"webpack-remove-empty-scripts": "^1.0.4",
"webpack-sources": "^3.2.3"
},
"dependencies": {
"@fontsource/inter": "^5.1.0",
"@popperjs/core": "^2.11.8",
"@types/jquery": "^3.5.31",
"bootstrap": "5.3.3",
"events": "^3.3.0",
"jquery": "^3.7.1",
"jquery-touchswipe": "^1.6",
"jquery.browser": "^0.1.0",
"material-design-icons-iconfont": "^6.7.0",
"nouislider": "^15.8.1",
"sprintf-js": "^1.1.3",
"vazirmatn": "^33.0.3",
"wnumb": "^1.2.0"
}
}