-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 612 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "11ty-Easy-Starter",
"version": "2.0.0",
"description": "",
"main": "index.html",
"scripts": {
"build:eleventy": "npx @11ty/eleventy",
"build:css": "sass src/sass:dist/css",
"watch:eleventy": "npx @11ty/eleventy --serve",
"watch:css": "sass --watch src/sass:dist/css",
"serve": "concurrently \"npm:build:css\" \"npm:watch:*\" ",
"build": "concurrently \"npm run build:*\" "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"concurrently": "^5.3.0",
"sass": "^1.32.0"
},
"dependencies": {}
}