-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.58 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "rawfeed-11ty",
"version": "0.1.0",
"description": "A raw 11ty theme for minimalists",
"type": "module",
"scripts": {
"sass": "sass src/assets/scss:src/assets/css --no-source-map --style=compressed",
"watch:sass": "sass --watch src/assets/scss:src/assets/css",
"eleventy:build": "NODE_ENV=production eleventy --input=./src --output=./_site",
"eleventy:serve": "NODE_ENV=development eleventy --serve --port 4000 --watch --incremental",
"clean:cache": "node tools/scripts/clean.mjs --cache",
"clean:all": "node tools/scripts/clean.mjs --all",
"serve": "npm-run-all --parallel clean:cache watch:sass eleventy:serve",
"build": "npm-run-all --parallel clean:cache eleventy:build",
"create:post": "node tools/scripts/post.mjs",
"create:page": "node tools/scripts/page.mjs",
"create:pixel": "node tools/scripts/pixel.mjs",
"help": "node tools/scripts/help.mjs"
},
"repository": "git+https://github.com/rawfeed/rawfeed-11ty.git",
"keywords": [
"rawfeed",
"theme",
"template",
"11ty",
"eleventy",
"retro"
],
"author": "William Canin <william.costa.canin@gmail.com> (https://williamcanin.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rawfeed/rawfeed-11ty/issues"
},
"homepage": "https://rawfeed.github.io/rawfeed-11ty",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"del": "^8.0.1",
"kleur": "^4.1.5",
"marked": "^16.4.1",
"npm-run-all": "^4.1.5",
"readline": "^1.3.0",
"sass": "^1.93.2",
"yaml": "^2.8.1"
}
}