-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 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
42
43
44
45
46
{
"name": "systems-encyclopedia",
"version": "0.0.1",
"description": "Systems Encyclopedia Project",
"source": [
"src/_assets/scss/main.scss",
"src/_assets/js/main.js"
],
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development run-p watch:*",
"build": "cross-env NODE_ENV=production npm-run-all clean --parallel build:* --serial purgecss",
"build:eleventy": "eleventy",
"clean": "rimraf public/ .parcel-cache/",
"debug": "cross-env DEBUG=Eleventy* NODE_ENV=development run-s start",
"purgecss": "npx purgecss -c ./purgecss.config.js",
"watch:eleventy": "eleventy --quiet --serve"
},
"keywords": [],
"author": "Wade Fagen-Ulmschneider",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/illinois/systems-encyclopedia"
},
"bugs": {
"url": "https://github.com/illinois/systems-encyclopedia/issues"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"markdown-it": "^12.3.2",
"markdown-it-attrs": "^4.1.3",
"npm-run-all": "^4.1.5",
"purgecss": "^4.1.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"markdown-it-anchor": "^8.4.1",
"markdown-it-footnote": "^3.0.3",
"sharp": "^0.30.7",
"slugify": "^1.6.5"
}
}