-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 853 Bytes
/
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
{
"name": "11ty-starter",
"version": "1.6.0",
"description": "A basic boilerplate for getting a new Eleventy site up and running.",
"main": "index.html",
"scripts": {
"watch:sass": "sass --watch _src/assets/scss:_site/assets/css --no-source-map",
"build:sass": "sass _src/assets/scss:_site/assets/css --no-source-map",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"repository": {
"type": "git",
"url": "git://github.com/peruvianidol/11ty-starter.git"
},
"keywords": [],
"author": "Mike Aparicio <[email protected]> (http://mikeaparicio.com/)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.0-canary.3",
"npm-run-all": "^4.1.5",
"sass": "^1.45.0"
}
}