34 lines
957 B
JSON
34 lines
957 B
JSON
{
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^9.6.1",
|
|
"cssnano": "^4.1.10",
|
|
"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",
|
|
"node-fetch": "^2.6.0",
|
|
"picnic": "^6.5.1",
|
|
"point-of-view": "^3.5.0"
|
|
}
|
|
}
|