| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| webpack-lit-scss [2022/03/26 20:30] – admin | webpack-lit-scss [2022/03/26 21:49] (current) – removed admin |
|---|
| ====== Lit using Scss ====== | |
| |
| <code json package.json> | |
| { | |
| "name": "vereine", | |
| "version": "1.0.0", | |
| "main": "index.js", | |
| "author": "ochorocho", | |
| "license": "MIT", | |
| "scripts": { | |
| "watch": "./node_modules/.bin/webpack --watch --progress --mode development", | |
| "build:development": "./node_modules/.bin/webpack -c webpack.config.js --progress --mode development", | |
| "build:production": "./node_modules/.bin/webpack -c webpack.config.js --progress --mode production", | |
| "test:server": "TYPO3_CONTEXT=Development/Test php -S 127.0.0.1:8000 -t public/", | |
| "test:db:import": "touch var/typo3-testing.sqlite && rm var/typo3-testing.sqlite && sqlite3 var/typo3-testing.sqlite < tests/_data/typo3-testing.sql", | |
| "test:db:export": "sqlite3 var/typo3-testing.sqlite .dump > tests/_data/typo3-testing.sql", | |
| "runner:assets": "gitlab-runner exec docker \"build assets\" --docker-volumes `pwd`:/builds/project-0 --env GIT_STRATEGY=\"none\"", | |
| "runner:tests": "gitlab-runner exec docker \"codeception\" --docker-volumes `pwd`:/builds/project-0 --env GIT_STRATEGY=\"none\"" | |
| }, | |
| "dependencies": { | |
| "@fortawesome/fontawesome-free": "^6.1.0", | |
| "autoprefixer": "^10.4.4", | |
| "bootstrap": "5.1.3", | |
| "copy-webpack-plugin": "^10.2.4", | |
| "css-loader": "^6.7.1", | |
| "cssnano": "^5.1.4", | |
| "eslint-plugin-prettier": "^4.0.0", | |
| "extract-loader": "^5.1.0", | |
| "file-loader": "^6.2.0", | |
| "lit": "^2.2.1", | |
| "lit-scss-loader": "^1.1.0", | |
| "nprogress": "^0.2.0", | |
| "o9n": "^2.1.1", | |
| "postcss-loader": "^6.2.1", | |
| "prettier": "^2.6.0", | |
| "prettier-webpack-plugin": "^1.2.0", | |
| "sass": "^1.49.9", | |
| "sass-loader": "^12.6.0", | |
| "seamless-scroll-polyfill": "^2.1.8", | |
| "smoothscroll-polyfill": "^0.4.4", | |
| "tiny-slider": "^2.9.4", | |
| "ts-loader": "^9.2.8", | |
| "typescript": "^4.6.2", | |
| "webpack": "^5.70.0" | |
| }, | |
| "devDependencies": { | |
| "webpack-cli": "^4.9.2" | |
| }, | |
| "packageManager": "yarn@3.2.0" | |
| } | |
| |
| </code> | |
| |