remote-jobs/package.json
James Nylen 58b9cf57b0
Static site improvements (#467)
* Improve logging messages

* Make local development easier; improve docs

* Combine page-specific CSS files into one

This file is small, and later it will also contain styles that need to
apply to the whole site.

* Add "Edit this page on GitHub" links

* Remove an unneeded element

* Assign table cell classes during parsing

This way it will work with JavaScript disabled too.

* Match font weights with other styles

* Always show hovered links in gray

Before this change, already-visited links would stay red on hover.

* Minor CSS tweaks

* In main table, show company names in bold

* Add mobile styles for companies table

* Remove a couple more empty profile sections
2018-08-12 23:12:18 -05:00

27 lines
542 B
JSON

{
"scripts": {
"validate": "bin/validate.js",
"test": "mocha",
"build": "bin/build-site.js",
"serve": "http-server site/build/",
"start": "bin/serve-site.js"
},
"nodemonConfig": {
"ext": "js,md,html,css",
"ignore": [
"site/build/"
]
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"marked": "^0.3.12",
"phin": "^2.9.1",
"rimraf": "^2.6.2",
"swig-templates": "^2.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"http-server": "^0.11.1",
"mocha": "^5.2.0"
}
}