website/package.json
2021-03-24 20:42:37 +01:00

23 lines
731 B
JSON

{
"name": "Website",
"version": "1.0.0",
"main": "index.js",
"repository": "git@gitlab.jonasled.de:jonasled/website.git",
"author": "jonasled <git@jonasled.de>",
"license": "LGPL-3.0-or-later",
"scripts": {
"compile": "concurrently \"yarn css\" \"yarn js\"",
"css": "sass scss/:public/css --style=compressed --no-source-map",
"js": "tsc",
"watch" : "concurrently \"tsc --watch\" \"sass --watch --style compressed scss/:public/css\" \"cd public && php -S locaLhost:1234\""
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/plotly.js": "^1.54.9",
"@webcomponents/custom-elements": "^1.4.3",
"concurrently": "^6.0.0",
"sass": "^1.32.8",
"typescript": "^4.2.2"
}
}