-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 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
33
34
{
"name": "eleventy-pp",
"version": "1.0.0",
"description": "",
"main": ".eleventy.js",
"scripts": {
"watch:sass": "sass src/assets/scss:src/_includes/css --watch",
"build:sass": "sass src/assets/scss:src/_includes/css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "ELEVENTY_ENV=development eleventy",
"admin": "npx netlify-cms-proxy-server",
"start": "npm run watch:sass & npm run watch:eleventy",
"dev": "npm run start",
"build": "npm run build:sass & npm run build:eleventy",
"build:sass:prod": "sass src/assets/scss:src/_includes/css --style=compressed",
"build:eleventy:prod": "ELEVENTY_ENV=production eleventy",
"build:prod": "npm run build:sass:prod & npm run build:eleventy:prod"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@vidhill/fortawesome-brands-11ty-shortcode": "^1.0.2",
"@vidhill/fortawesome-free-regular-11ty-shortcode": "^1.0.3",
"eleventy-plugin-i18n": "^0.1.3",
"html-minifier": "^4.0.0",
"prettier": "^2.7.1",
"sass": "1.55.0",
"terser": "^5.15.0"
}
}