-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
35
{
"name": "salem.io",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:salemhilal/salem.io.git",
"author": "<[email protected]>",
"license": "MIT",
"scripts": {
"compile": "eleventy",
"post-build": "yarn uncss -u .uncssrc -o dist/style.css dist/**/*.html dist/**/**/*.html dist/index.html",
"build": "yarn compile && yarn run post-build",
"serve": "yarn run http-server dist/",
"staging": "yarn clean && yarn build && yarn serve",
"dev": "eleventy --serve",
"clean": "rm -rf dist"
},
"devDependencies": {
"prettier": "^2.0.5"
},
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@quasibit/eleventy-plugin-sitemap": "^2.0.0",
"@toycode/markdown-it-class": "^1.2.4",
"clean-css": "^4.2.3",
"eleventy-plugin-lazyimages": "^1.1.1",
"http-server": "^0.12.3",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^6.0.0",
"moment": "^2.25.3",
"uncss": "^0.17.3"
}
}