-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
35
36
37
{
"name": "11ty-sass-skeleton",
"version": "1.2.0",
"description": "",
"main": "index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:docs/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass:docs/css",
"build:eleventy": "cross-env NODE_ENV=production eleventy",
"postbuild": "postcss docs/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": "^0.12.1",
"autoprefixer": "^10.3.1",
"cross-env": "^7.0.3",
"cssnano": "^5.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"sass": "^1.37.5"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2"
}
}