jonnybarnes.uk/package.json

28 lines
827 B
JSON
Raw Normal View History

2016-05-19 15:01:28 +01:00
{
"private": true,
"name": "jbuk-frontend",
"version": "0.0.1",
2024-06-08 20:55:34 +01:00
"type": "module",
"repository": "https://github.com/jonnybarnes/jonnybarnes.uk",
"license": "CC0-1.0",
"devDependencies": {
"@eslint/js": "^9.6.0",
2025-01-25 11:47:43 +00:00
"@stylistic/eslint-plugin": "^3.0.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"stylelint": "^16.7.0",
2025-01-25 11:47:43 +00:00
"stylelint-config-standard": "^37.0.0"
},
"scripts": {
"eslint": "eslint public/assets/js/*.js",
"stylelint": "stylelint public/assets/css/*.css",
"lint": "npm run eslint && npm run stylelint",
"compress": "./scripts/compress.sh",
"build": "npm run lint && npm run compress"
},
"dependencies": {
"@11ty/is-land": "^4.0.0",
"@zachleat/snow-fall": "^1.0.2"
}
2016-05-19 15:01:28 +01:00
}