website/package.json

25 lines
819 B
JSON
Raw Permalink Normal View History

2021-02-28 11:00:29 +01:00
{
2021-09-25 23:02:12 +02:00
"name": "website",
2021-09-25 23:00:30 +02:00
"version": "1.0.0",
"main": "index.js",
"repository": "git@gitlab.jonasled.de:jonasled/website.git",
"author": "jonasled <git@jonasled.de>",
2021-09-25 23:01:59 +02:00
"license": "GPL-3.0-or-later",
2021-09-25 23:00:30 +02:00
"scripts": {
2022-03-08 08:57:52 +01:00
"build": "concurrently \"yarn css\" \"yarn js\"",
"css": "stylus styl/ -o public/css/ ",
2021-09-25 23:00:30 +02:00
"js": "webpack --config ./webpack.conf.js",
2022-01-17 12:30:59 +01:00
"watch": "concurrently \"stylus -w styl/ -o public/css/\" \"cd public && php -S 0.0.0.0:1234\" \"webpack --config ./webpack.conf.js --mode development --watch\""
2021-09-25 23:00:30 +02:00
},
"devDependencies": {
"concurrently": "^6.0.0",
"webpack": "^5.28.0",
2022-01-17 19:41:41 +01:00
"webpack-cli": "^4.5.0",
"stylus": "^0.56.0"
2021-09-25 23:00:30 +02:00
},
"dependencies": {
"basiclightbox": "^5.0.4",
2022-01-17 19:41:41 +01:00
"chart.js": "^2.9.4"
2021-09-25 23:00:30 +02:00
}
}