generated from 5t3ph/11ty-sass-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 983 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
30
31
32
33
{
"name": "11ty-email-generator",
"version": "1.0.0",
"description": "",
"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",
"prefix": "postcss public/css/*.css -u autoprefixer -r",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all build:sass prefix build:eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/11ty-email-generator.git"
},
"author": "5t3ph",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.2",
"juice": "^7.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.2.0",
"sass": "^1.29.0"
},
"browserslist": [
"last 2 versions"
]
}