FreesideWeb/package.json

31 lines
1.1 KiB
JSON
Raw Normal View History

2021-08-18 19:56:22 +01:00
{
"name": "freesideweb",
2021-08-20 17:48:17 +01:00
"author": "@closebracket <closebracket@pm.me> (https://github.com/closebracket)",
"publisher": "",
"homepage": "https://github.com/owner/project#readme",
"license": "ISC",
2024-02-13 10:17:03 +00:00
"version": "1.0.1",
2021-08-20 17:48:17 +01:00
"description": "Freeside web is an eleventy static site with tailwind and postcss integration to update the Freeside website",
2021-08-18 19:56:22 +01:00
"main": "index.js",
"dependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
2021-08-18 19:56:22 +01:00
"autoprefixer": "^10.3.1",
"concurrently": "^6.2.1",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^0.9.0",
2021-08-30 20:22:23 +01:00
"@types/simple-icons": "^5.8.0",
"cross-env": "^7.0.3"
2021-08-18 19:56:22 +01:00
},
"scripts": {
2021-08-30 20:22:23 +01:00
"tailwind:process": "cross-env TAILWIND_MODE=watch postcss css/tailwind.scss --o public/assets/css/main.css --watch",
"tailwind:build": "postcss css/tailwind.scss --o public/assets/css/main.css",
2021-08-18 19:56:22 +01:00
"start": "concurrently \"npm run tailwind:process\" \"npm run serve\"",
2021-09-08 15:44:28 +01:00
"serve": "npx eleventy --serve",
"build": "npm run tailwind:build && npx @11ty/eleventy"
2021-08-20 17:48:17 +01:00
}
2021-08-18 19:56:22 +01:00
}