-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.14 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": "fronteers-meetups-belgium",
"version": "1.0.0",
"description": "Fronteers BE info page.",
"main": "index.njk",
"scripts": {
"generate:sprite": "svg-icon-generate --folder=src/assets/icons --output=src/assets/sprite.svg",
"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 generate:sprite --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",
"url": "https://twitter.com/fronteersbe"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.0.0",
"eleventy-google-fonts": "^0.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.58.3",
"svg-icon-sprite": "^1.1.1"
}
}