-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "eleventy-sample",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"eleventy:default": "npx eleventy",
"eleventy:watch": "npx eleventy --watch",
"serve": "light-server -c .lightserverrc",
"styles:dev": "sass src/styles:dist/styles && postcss ./dist/styles/*.css --replace",
"styles:prod": "sass --style=compressed src/styles:dist/styles && postcss ./dist/styles/*.css --replace",
"dev": "npm-run-all clean styles:dev eleventy:default --parallel eleventy:watch serve --print-label",
"build": "run-s clean styles:prod eleventy:default --print-label"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.9.0",
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"light-server": "^2.6.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"sass": "^1.26.3"
},
"browserslist": [
"defaults"
]
}