fipamothemekit/package.json
are0h 5b3844b196 CSS Overhaul
Styling was a bit stale, so I ovehauled them to use native CSS,
eliminating the need for pre-processors.

The overall framework was old and convoluted so that needed to be
updated to streamline how styles are being applied.

There's still some work to do but the base is so much cleaner now.
2022-10-31 16:07:19 -07:00

27 lines
921 B
JSON

{
"name": "fipamo-theme-kit",
"version": "1.0.0",
"private": true,
"dependencies": {
"parcel": "^2.2.1",
"sass": "^1.49.0"
},
"scripts": {
"watch": "npx parcel watch $npm_package_config_theme_path/com/ThemeStart.js --dist-dir $npm_package_config_theme_dir/assets/scripts --public-url /assets/scripts ",
"build": "npx parcel build $npm_package_config_theme_path/com/ThemeStart.js --dist-dir $npm_package_config_theme_dir/assets/scripts --public-url /assets/scripts",
"dev": "php -S localhost:$npm_package_config_port"
},
"license": "UNLICENSED",
"config": {
"port": "1414",
"current_theme": "fipamo-default",
"theme_path": "src/themes/theme-fipamo-default",
"theme_dir": "src/themes/theme-fipamo-default/fipamo-default"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.2.1",
"stylelint": "^14.14.0",
"stylelint-config-standard": "^29.0.0"
}
}