-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "fronteers-meetups-belgium",
"version": "1.0.0",
"description": "Fronteers BE info page.",
"main": "index.njk",
"type": "module",
"scripts": {
"watch:eleventy": "eleventy --serve",
"watch:sass": "sass --watch src/assets/theming:public/assets",
"build:eleventy": "eleventy",
"build:sass": "sass --no-source-map --style=compressed src/assets/theming:public/assets",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*",
"debug": "DEBUG=* npx eleventy",
"buildprod:sass": "sass --no-source-map --style=compressed src/assets/theming:public/assets",
"buildprod:eleventy": "ELEVENTY_ENV=production eleventy",
"buildprod": "npm-run-all buildprod:*"
},
"author": {
"name": "Fronteers BE",
"email": "belgie@fronteers.nl"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"eleventy-plugin-icons": "^4.5.7",
"npm-run-all": "^4.1.5",
"sass": "^1.97.3"
}
}