-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
31 lines (31 loc) · 1.07 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
{
"name": "eduardoboucas.com",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:css && rm -rf _site && npx @11ty/eleventy && npm run build:js && npm run build:clean",
"build:clean": "rm -rf _site/posts/*/**.md && find _site/posts/ -type d -empty -delete",
"build:css": "node-sass --output-style compressed sass/main.scss > assets/css/main.css",
"build:js": "cat assets/js/*.js | uglifyjs > _site/assets/js/min/main.min.js",
"start": "npx @11ty/eleventy --serve",
"watch:css": "node-sass --watch --output-style compressed --output assets/css sass"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^1.0.5",
"@sindresorhus/slugify": "^0.10.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.5",
"moment": "^2.22.2",
"node-sass": "^4.12.0",
"striptags": "^3.1.1",
"uglify-js": "^3.4.9"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1"
}
}