website/package.json

40 lines
1.3 KiB
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-12 19:35:06 +01:00
"build": "npm-run-all build:*",
2022-08-03 20:55:09 +01:00
"lint:eslint": "eslint --ext js --report-unused-disable-directives .",
"lint:prettier": "prettier --check static/src",
"lint": "npm-run-all lint:*",
"format:prettier": "prettier --write static/src",
"format:eslint": "npm run lint:eslint -- --fix",
"format": "npm-run-all format:*"
2022-06-09 09:09:02 +01:00
},
2022-06-10 09:13:00 +01:00
"author": "Jake Howard",
"devDependencies": {
"esbuild": "^0.14.43",
2022-08-03 20:55:09 +01:00
"eslint": "^8.21.0",
2022-06-10 09:13:00 +01:00
"npm-run-all": "^4.1.5",
2022-06-12 19:35:06 +01:00
"prettier": "2.6.2",
2022-06-10 09:13:00 +01:00
"sass": "^1.52.3"
2022-06-12 17:21:46 +01:00
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"bulma": "^0.9.4",
2022-06-20 08:46:42 +01:00
"darkreader": "^4.9.51",
"elevator.js": "^1.0.1",
2022-07-04 20:27:08 +01:00
"firacode": "^6.2.0",
2022-07-26 09:04:14 +01:00
"htmx.org": "^1.8.0",
2022-07-04 20:06:04 +01:00
"lite-youtube-embed": "^0.2.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
2022-07-04 20:06:04 +01:00
"shareon": "^2.0.0"
2022-06-10 09:13:00 +01:00
}
2022-06-09 09:09:02 +01:00
}