feat(main): Add base theme: This is the falcon theme out of the box.

This is falcon v3.1.2
This commit is contained in:
2025-11-18 14:04:01 +01:00
parent 3a7f2db331
commit 6849b8eefd
605 changed files with 49820 additions and 0 deletions

80
falcon/_dev/package.json Normal file
View File

@ -0,0 +1,80 @@
{
"name": "Falcon-theme",
"version": "3.1.2",
"description": "Modern prestashop theme that speed up your development process",
"scripts": {
"project-init": "falcon-cli init",
"add-entry": "falcon-cli add-entry",
"build-purge": "webpack --progress --mode=production --env purge=true",
"build-analyze": "webpack --progress --mode=production --env analyze=true",
"build": "webpack --progress --mode=production --env stats=errors-only",
"build-ci": "webpack --progress --mode=production --env stats=errors-only --env envFile=.env-example",
"watch": "webpack watch --progress --mode=development",
"dev": "webpack serve --progress --mode=development --env devServer=true",
"scss-lint": "stylelint \"**/*.scss\" --fix",
"scss-lint-fix": "stylelint \"**/*.scss\" --fix",
"js-lint": "eslint -c .eslintrc.js --ext .js,.vue ./js",
"js-lint-fix": "eslint -c .eslintrc.js --ext .js,.vue ./js --fix"
},
"author": "Igor Stępień",
"license": "GPL-3.0",
"dependencies": {
"@prestashop-core/jquery.live-polyfill": "^1.1.2",
"bootstrap": "^4.6.0",
"bootstrap-touchspin": "^4.3.0",
"bs-custom-file-input": "^1.3.4",
"follow-redirects": "^1.14.8",
"jquery": "^3.4.1",
"jquery-hoverintent": "^1.10.1",
"jquery-migrate": "^3.1.0",
"jquery.browser": "^0.1.0",
"material-design-icons-iconfont": "5.0.1",
"nouislider": "^14.6.3",
"popper.js": "^1.16.1",
"prestashop": "0.0.1",
"sprintf-js": "^1.1.2",
"swiper": "^9.2.4",
"vanilla-lazyload": "^17.3.1",
"wnumb": "^1.2.0",
"wretch": "^2.5.1"
},
"devDependencies": {
"@oksydan/falcon-cli": "^0.3.0",
"chokidar": "^3.4.3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv": "^10.0.0",
"esbuild-loader": "^2.15.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"glob-all": "^3.3.0",
"hot-accept-webpack-plugin": "^4.0.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.3.0",
"minimist": "^1.2.6",
"postcss": "^8.3.6",
"postcss-import": "^12.0.1",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass": "^1.54.5",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^14.11.0",
"stylelint-config-recommended-scss": "^7.0.0",
"webpack": "^5.53.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.4",
"webpack-font-preload-plugin": "1.5.0",
"webpack-merge": "^5.8.0"
},
"private": true,
"workspaces": [
"../../../modules/*/_theme_dev/"
]
}