use php instead of php8

This commit is contained in:
Jonas Leder 2021-09-25 23:00:30 +02:00
parent 3004fa0dfc
commit 5b6dd23fdf
No known key found for this signature in database
GPG key ID: CC3C488E27DFF5CA

View file

@ -1,24 +1,24 @@
{ {
"name": "Website", "name": "Website",
"version": "1.0.0", "version": "1.0.0",
"main": "index.js", "main": "index.js",
"repository": "git@gitlab.jonasled.de:jonasled/website.git", "repository": "git@gitlab.jonasled.de:jonasled/website.git",
"author": "jonasled <git@jonasled.de>", "author": "jonasled <git@jonasled.de>",
"license": "LGPL-3.0-or-later", "license": "LGPL-3.0-or-later",
"scripts": { "scripts": {
"compile": "concurrently \"yarn css\" \"yarn js\"", "compile": "concurrently \"yarn css\" \"yarn js\"",
"css": "sass scss/:public/css --style=compressed --no-source-map", "css": "sass scss/:public/css --style=compressed --no-source-map",
"js": "webpack --config ./webpack.conf.js", "js": "webpack --config ./webpack.conf.js",
"watch": "concurrently \"sass --watch --style compressed scss/:public/css\" \"cd public && php8 -S localhost:1234\" \"webpack --config ./webpack.conf.js --mode development --watch\"" "watch": "concurrently \"sass --watch --style compressed scss/:public/css\" \"cd public && php -S localhost:1234\" \"webpack --config ./webpack.conf.js --mode development --watch\""
}, },
"devDependencies": { "devDependencies": {
"concurrently": "^6.0.0", "concurrently": "^6.0.0",
"webpack-cli": "^4.5.0", "webpack-cli": "^4.5.0",
"sass": "^1.32.8", "sass": "^1.32.8",
"webpack": "^5.28.0" "webpack": "^5.28.0"
}, },
"dependencies": { "dependencies": {
"basiclightbox": "^5.0.4", "basiclightbox": "^5.0.4",
"chart.js": "^2.9.4" "chart.js": "^2.9.4"
} }
} }