-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "11ty-sass-skeleton",
"version": "1.3.0",
"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": {
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass:public/css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/11ty-sass-skeleton.git"
},
"author": "5t3ph",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "1.0.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.10",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"jsdom": "^19.0.0",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.2",
"sass": "^1.43.4"
},
"browserslist": ["> 0.5%", "not IE 11"]
}