-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.65 KB
/
package.json
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
47
48
49
50
51
{
"name": "birdhouse-recipes",
"version": "1.0.0",
"description": "Food and drink for birds and furies.",
"scripts": {
"start": "rm -rf dist && npm-run-all sass --parallel watch:*",
"build": "rm -rf dist && npm run sass && npx @11ty/eleventy",
"watch:eleventy": "npx @11ty/eleventy --serve --incremental",
"watch:sass": "npm run sass -- --watch",
"sass": "sass --style=compressed --no-source-map src/scss:src/css",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"lint:css": "stylelint \"src/scss/*.{css,scss,sass}\" --color --formatter verbose",
"lint:js": "npx eslint .",
"lint": "npm run lint:md && npm run lint:css && npm run lint:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vulcu/birdhouse-recipes.git"
},
"contributors": [
{
"name": "Winry Litwa-Vulcu",
"url": "https://github.com/vulcu"
},
{
"name": "Emma Litwa-Vulcu",
"url": "https://github.com/reiniiriarios"
}
],
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/vulcu/birdhouse-recipes/issues"
},
"homepage": "https://vulcu.github.io/birdhouse-recipes/",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.4.1",
"js-yaml": "^4.1.0",
"markdownlint-cli": "^0.41.0",
"npm-run-all": "^4.1.5",
"sass": "^1.77.5",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0"
}
}