-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.17 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.17 KB
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
{
"name": "make-life-work",
"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": "./node_modules/.bin/sass src/styles:dist/styles && ./node_modules/.bin/postcss ./dist/styles/*.css --replace",
"styles:prod": "./node_modules/.bin/sass --style=compressed src/styles:dist/styles && ./node_modules/.bin/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": "si@jobling.com",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.13",
"light-server": "^2.6.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"sass": "^1.26.3"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"luxon": "^3.3.0"
}
}