-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
36
37
38
39
40
41
{
"name": "emptywork.github.io",
"version": "1.0.0",
"description": "These are the template used by [Emptywork](https://emptywork.github.io)",
"main": "index.js",
"scripts": {
"sass": "sass --no-source-map src/assets/scss/:public/css/",
"sass:compressed": "sass --style=compressed --no-source-map src/assets/scss:public/css/",
"watch": "npm-run-all --parallel watch:*",
"watch:eleventy": "eleventy --serve",
"watch:sass": "npm run sass:compressed -- --watch",
"build": "npm run sass:compressed && eleventy",
"start": "npm-run-all sass:compressed --parallel watch:*",
"dev": "npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmptyWork/emptywork.github.io.git"
},
"keywords": [],
"author": "emptywork",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmptyWork/emptywork.github.io/issues"
},
"homepage": "https://github.com/EmptyWork/emptywork.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0"
},
"dependencies": {
"highlight.js": "^11.5.1",
"markdown-it-anchor": "^8.6.2",
"markdown-it-attrs": "^4.1.4",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-table-of-contents": "^0.5.2",
"npm-run-all": "^4.1.5",
"sass": "^1.49.8"
}
}