-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 852 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
27
28
29
{
"name": "11ty-sass-skeleton",
"version": "3.0.3",
"description": "Featuring absolutely nothing beyond a base HTML5 template and the essential setup to watch and compile your Sass alongside 11ty.",
"main": "index.html",
"scripts": {
"start": "npm run copy:img && eleventy --serve",
"build:js": "esbuild src/js/index.js --bundle --outdir=public/js",
"copy:img": "cp -r src/img public/",
"build": "eleventy && npm run build:js && npm run copy:img"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/11ty-sass-skeleton.git"
},
"author": "5t3ph",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11tyrocks/eleventy-plugin-sass-lightningcss": "^1.2.0"
},
"browserslist": [
"> 0.2%",
"not dead"
],
"devDependencies": {
"esbuild": "^0.20.1"
}
}