Readlebee/package.json

33 lines
929 B
JSON
Raw Normal View History

2019-09-04 20:05:03 +02:00
{
"name": "book-tracker",
"version": "0.0.0",
"description": "An attempt at a viable alternative to Goodreads",
"main": "index.html",
"repository": "https://gitlab.com/Alamantus/book-tracker.git",
"author": "Robbie Antenesse <dev@alamantus.com>",
"license": "MIT",
"scripts": {
"start": "npm run compile-sass && npm run start-server",
"start-server": "node server.js",
"compile-sass": "node process-styles.js"
2019-09-04 20:05:03 +02:00
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"cssnano": "^4.1.10",
2019-09-04 20:05:03 +02:00
"sass": "^1.23.0-module.beta.1"
},
"dependencies": {
"fastify": "^2.8.0",
"fastify-caching": "^5.0.0",
"fastify-compress": "^0.11.0",
"fastify-formbody": "^3.1.0",
"fastify-helmet": "^3.0.1",
"fastify-static": "^2.5.0",
"handlebars": "^4.2.0",
"html-minifier": "^4.0.0",
"make-promises-safe": "^5.0.0",
"picnic": "^6.5.1",
"point-of-view": "^3.5.0"
2019-09-04 20:05:03 +02:00
}
}