-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "eleventy-starter-ghost",
"version": "1.0.0",
"description": "A starter template to build websites with Ghost & Eleventy",
"main": ".eleventy.js",
"scripts": {
"start": "yarn run dev",
"dev": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build": "cross-env ELEVENTY_ENV=prod eleventy",
"test": "yarn run build",
"lint": "eslint . --ext .js --cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TryGhost/eleventy-starter-ghost.git"
},
"keywords": [
"eleventy",
"ghost",
"starter",
"boilerplate",
"static",
"site",
"jamstack"
],
"author": "David Darnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/TryGhost/eleventy-starter-ghost/issues"
},
"homepage": "https://github.com/TryGhost/eleventy-starter-ghost#readme",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@tryghost/content-api": "^1.4.4",
"@tryghost/helpers": "^1.1.6",
"clean-css": "^4.2.1",
"cross-env": "^7.0.0",
"dotenv": "^8.0.0",
"eleventy-plugin-lazyimages": "liamfiddler/eleventy-plugin-lazyimages",
"eleventy-plugin-local-images": "^0.4.0",
"eslint-utils": "3.0.0",
"html-minifier": "^4.0.0"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-ghost": "2.11.0"
}
}