-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "11ty-example",
"version": "1.0.0",
"description": "Template for an 11ty site",
"main": ".eleventy.js",
"scripts": {
"build:sass": "npx sass src/css/",
"watch:sass": "npx sass --watch src/css/",
"build:eleventy": "npx @11ty/eleventy",
"watch:eleventy": "npx @11ty/eleventy --serve",
"watch": "npm-run-all build:sass --parallel watch:eleventy watch:sass",
"build": "npm-run-all build:eleventy build:sass",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "GIT URL HERE"
},
"keywords": [],
"author": "AUTHOR HERE",
"license": "UNLICENSED",
"bugs": {
"url": "ISSUE REPORTING URL HERE"
},
"homepage": "PROJECT HOME PAGE URL HERE",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.2",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.0.0",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-div": "^1.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.38.1"
}
}