-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "e11ty-starter",
"version": "0.1.0",
"description": "",
"type": "module",
"scripts": {
"start": "ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"build": "ELEVENTY_ENV=production npx @11ty/eleventy",
"start:debug": "ELEVENTY_ENV=development DEBUG=Eleventy* npx @11ty/eleventy --serve",
"build:debug": "ELEVENTY_ENV=production DEBUG=Eleventy* npx @11ty/eleventy",
"build:benchmark": "ELEVENTY_ENV=production DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"clean": "rimraf _site",
"format": "prettier . --write",
"lint:css": "stylelint \"src/assets/css/**/*.css\" --fix"
},
"keywords": [
"11ty",
"eleventy",
"eleventy-sample",
"blog"
],
"repository": {
"type": "git",
"url": "git://github.com/ellyloel/e11ty-starter.git"
},
"author": {
"name": "Elly Loel",
"email": "[email protected]",
"url": "https://ellyloel.com/"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/ellyloel/e11ty-starter/issues"
},
"homepage": "https://github.com/ellyloel/e11ty-starter#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-activity-feed": "^1.0.9",
"@11ty/eleventy-img": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"@11ty/eleventy-plugin-webc": "^0.8.1",
"a11y.css": "^5.2.0",
"cssnano": "^5.1.15",
"cssremedy": "0.1.0-beta.2",
"eleventy-plugin-gen-favicons": "^1.1.2",
"eslint": "^8.36.0",
"luxon": "^3.2.1",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-js": "^4.0.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-order": "^6.0.3"
},
"browserslist": [
"defaults"
],
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}