forked from RVCC-IDMX/poem-site-cynthiateeters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "idmx-11ty-sass-starter",
"version": "1.0.0",
"description": "A starter index.html file and scss files for a simple setup to watch and compile your Sass using 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": "RVCC IDMX",
"license": "MIT",
"browserslist": [
"> 0.5%",
"not IE 11"
],
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"sass": "^1.54.9"
}
}