aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
author2022-01-08 17:27:42 +0530
committer2022-01-08 17:27:42 +0530
commit5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a (patch)
treebbca1d1fa46fb810d9974484572de5a9bfac54b8 /package.json
parentmake it ready to deploy (diff)
downloadsudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar.gz
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar.bz2
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar.lz
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar.xz
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.tar.zst
sudomsg-5aeaf2f352e7da0a0d55a7ad2cd7dbd3869b875a.zip
add service worker
Diffstat (limited to 'package.json')
-rw-r--r--package.json52
1 files changed, 33 insertions, 19 deletions
diff --git a/package.json b/package.json
index 8e14638..5aab7e5 100644
--- a/package.json
+++ b/package.json
@@ -2,28 +2,42 @@
"name": "sudomsg",
"version": "1.0.0",
"description": "Sudomsg Website",
+ "devDependencies": {
+ "@11ty/eleventy": "^1.0.0-beta.10",
+ "@11ty/eleventy-plugin-rss": "^1.1.2",
+ "@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
+ "@babel/core": "^7.16.7",
+ "@babel/preset-env": "^7.16.7",
+ "@sindresorhus/slugify": "^1.1.2",
+ "del-cli": "^4.0.1",
+ "eslint": "^8.6.0",
+ "luxon": "^2.3.0",
+ "markdown-it": "^12.3.0",
+ "markdown-it-attrs": "^4.1.3",
+ "postcss": "^8.4.5",
+ "postcss-import": "^14.0.2",
+ "postcss-preset-env": "^7.2.0"
+ },
"scripts": {
- "build": "eleventy",
- "serve": "http-server dist/ -g"
+ "prestart": "npm run clean",
+ "prebuild": "npm run clean",
+ "clean": "del dist",
+ "build": "eleventy --quiet",
+ "serve": "eleventy --serve --quiet",
+ "start": "npm run serve",
+ "debug": "DEBUG=* eleventy"
},
- "keywords": [],
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/marcthe12/website.git"
+ },
+ "keywords": [
+ "Blog"
+ ],
"author": "Marc Pervaz Boocha",
"license": "ISC",
- "devDependencies": {
- "@11ty/eleventy": "^0.12.1",
- "@11ty/eleventy-plugin-rss": "^1.1.1",
- "@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
- "autoprefixer": "^10.3.4",
- "cssnano": "^5.0.8",
- "html-minifier": "^4.0.0",
- "http-server": "^13.0.2",
- "markdown-it-attrs": "^4.0.0",
- "postcss": "^8.3.6",
- "postcss-import": "^14.0.2",
- "standard": "^16.0.3"
+ "bugs": {
+ "url": "https://github.com/marcthe12/website/issues"
},
- "browserslist": [
- "defaults",
- "not IE 11"
- ]
+ "homepage": "https://sudomsg.xyz"
}