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-08-03 21:27:44 +01:00
|
|
|
"build:css": "sass --style=compressed --embed-sources --load-path=$PWD/node_modules static/src/scss:static/build/css",
|
2022-06-12 17:21:46 +01:00
|
|
|
"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",
|
2022-08-03 21:22:11 +01:00
|
|
|
"lint:scss": "stylelint static/src/scss",
|
2022-08-03 20:55:09 +01:00
|
|
|
"lint": "npm-run-all lint:*",
|
|
|
|
"format:prettier": "prettier --write static/src",
|
|
|
|
"format:eslint": "npm run lint:eslint -- --fix",
|
2022-08-03 21:22:11 +01:00
|
|
|
"format:scss": "npm run lint:scss -- --fix",
|
2022-08-03 20:55:09 +01:00
|
|
|
"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": {
|
2023-01-29 08:00:48 +00:00
|
|
|
"eslint": "8.33.0",
|
2022-09-13 19:29:49 +01:00
|
|
|
"prettier": "2.7.1",
|
2022-12-29 08:01:01 +00:00
|
|
|
"stylelint": "14.16.1",
|
2022-09-09 17:13:13 +01:00
|
|
|
"stylelint-config-prettier-scss": "0.0.1",
|
2022-11-04 16:00:31 +00:00
|
|
|
"stylelint-config-standard-scss": "6.1.0"
|
2022-06-12 17:21:46 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-30 20:01:10 +01:00
|
|
|
"@fontsource/fira-code": "5.0.2",
|
2023-04-17 16:01:09 +01:00
|
|
|
"@fortawesome/fontawesome-free": "6.4.0",
|
2022-09-09 17:13:13 +01:00
|
|
|
"@ledge/is-ie-11": "7.0.0",
|
|
|
|
"bulma": "0.9.4",
|
|
|
|
"elevator.js": "1.0.1",
|
2023-08-14 08:01:35 +01:00
|
|
|
"esbuild": "0.19.2",
|
2022-09-09 17:13:13 +01:00
|
|
|
"glightbox": "3.2.0",
|
2023-04-28 20:01:12 +01:00
|
|
|
"htmx.org": "1.9.2",
|
2023-10-04 20:01:39 +01:00
|
|
|
"lite-youtube-embed": "0.3.0",
|
2023-10-16 21:30:36 +01:00
|
|
|
"lodash.clamp": "4.0.3",
|
2022-09-09 17:13:13 +01:00
|
|
|
"lodash.debounce": "4.0.8",
|
|
|
|
"lodash.throttle": "4.1.1",
|
|
|
|
"npm-run-all": "4.1.5",
|
2023-09-14 08:01:12 +01:00
|
|
|
"sass": "1.67.0",
|
2023-08-19 14:01:03 +01:00
|
|
|
"shareon": "2.3.0"
|
2022-06-10 09:13:00 +01:00
|
|
|
}
|
2022-06-09 09:09:02 +01:00
|
|
|
}
|