forked from webandras/static-site-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "static-site-express",
"version": "4.1.0",
"description": "A simple Node.js based static site generator that uses EJS and Markdown",
"main": "./lib/build.js",
"scripts": {
"sass": "node-sass --include-path ./src/assets/stylesheet/ ./scss/main.scss ./src/assets/stylesheet/main.css",
"build": "node ./lib/build.js",
"heroku": "node ./lib/build.js && node ./lib/serve.js",
"serve": "node ./lib/serve.js",
"watch": "nodemon -L --watch ./src --watch site.config.js ./lib/build.js -e *",
"watch-exp": "node ./lib/watch.js",
"standard": "standard ./lib/build.js",
"standard-fix": "standard --fix ./lib/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalsaBoy990/static-site-express.git"
},
"keywords": [
"Node.js",
"Express",
"ejs",
"markdown",
"SCSS",
"static-site",
"static site generator",
"static files",
"netlify",
"heroku"
],
"author": "András Gulácsi",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"ejs": "^2.5.7",
"express": "^4.16.2",
"front-matter": "^2.3.0",
"fs-extra": "^5.0.0",
"helmet": "^3.12.1",
"helmet-csp": "^2.7.0",
"highlightjs": "^9.10.0",
"markdown-it": "^8.4.1",
"markdown-it-attrs": "^2.2.0",
"markdown-it-highlightjs": "^3.0.0",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-multimd-table": "^3.1.2",
"markdown-it-podcast": "^0.2.3",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-video": "^0.6.3",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"node-sass": "^4.12.0",
"standard": "^11.0.1"
},
"bugs": {
"url": "https://github.com/SalsaBoy990/static-site-express/issues"
},
"homepage": "https://github.com/SalsaBoy990/static-site-express#readme"
}