website/package.json

25 lines
718 B
JSON
Raw Normal View History

2022-06-09 09:09:02 +01:00
{
"name": "website",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
2022-06-10 09:13:00 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"build:js": "esbuild static/src/js/*.js --bundle --outdir=static/build/js --minify --sourcemap",
2022-06-12 17:21:46 +01:00
"build:css": "sass --style=compressed --load-path=$PWD/node_modules static/src/scss:static/build/css",
"build:contrib": "./scripts/copy-npm-contrib.sh",
2022-06-10 09:13:00 +01:00
"build": "npm-run-all build:*"
2022-06-09 09:09:02 +01:00
},
2022-06-10 09:13:00 +01:00
"author": "Jake Howard",
"devDependencies": {
"esbuild": "^0.14.43",
"npm-run-all": "^4.1.5",
"sass": "^1.52.3"
2022-06-12 17:21:46 +01:00
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"bulma": "^0.9.4",
"darkmode-js": "^1.5.7"
2022-06-10 09:13:00 +01:00
}
2022-06-09 09:09:02 +01:00
}