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": {
|
2019-09-07 21:54:44 +02:00
|
|
|
"dev": "npm run watch-js",
|
|
|
|
"start": "npm run build && npm run serve",
|
|
|
|
"watch-js": "parcel watch src/index.html --no-hmr",
|
|
|
|
"serve": "node server.js",
|
|
|
|
"build": "parcel build src/index.html --no-source-maps",
|
|
|
|
"clear": "npm run clear-dist && npm run clear-cache",
|
|
|
|
"clear-dist": "rimraf dist/{*,.*}",
|
|
|
|
"clear-cache": "rimraf .cache/{*,.*}"
|
2019-09-04 20:05:03 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"autoprefixer": "^9.6.1",
|
2019-09-07 21:54:44 +02:00
|
|
|
"choo-devtools": "^3.0.1",
|
2019-09-06 01:20:24 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2019-09-07 21:54:44 +02:00
|
|
|
"parcel-bundler": "^1.12.3",
|
|
|
|
"parcel-plugin-goodie-bag": "^2.0.0",
|
|
|
|
"rimraf": "^3.0.0",
|
2019-09-07 02:06:55 +02:00
|
|
|
"sass": "^1.23.0-module.beta.1",
|
|
|
|
"sharp": "^0.23.0"
|
2019-09-04 20:05:03 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-09-07 02:12:56 +02:00
|
|
|
"cross-env": "^5.2.1",
|
2019-09-07 21:54:44 +02:00
|
|
|
"choo": "^7.0.0",
|
2019-09-06 01:20:24 +02:00
|
|
|
"fastify": "^2.8.0",
|
|
|
|
"fastify-caching": "^5.0.0",
|
|
|
|
"fastify-compress": "^0.11.0",
|
2019-09-07 06:17:45 +02:00
|
|
|
"fastify-cookie": "^3.1.0",
|
2019-09-06 01:20:24 +02:00
|
|
|
"fastify-formbody": "^3.1.0",
|
|
|
|
"fastify-helmet": "^3.0.1",
|
2019-09-07 06:17:45 +02:00
|
|
|
"fastify-jwt": "^1.0.0",
|
2019-09-06 01:20:24 +02:00
|
|
|
"fastify-static": "^2.5.0",
|
|
|
|
"handlebars": "^4.2.0",
|
|
|
|
"html-minifier": "^4.0.0",
|
|
|
|
"make-promises-safe": "^5.0.0",
|
2019-09-07 01:20:27 +02:00
|
|
|
"node-fetch": "^2.6.0",
|
2019-09-06 01:20:24 +02:00
|
|
|
"picnic": "^6.5.1",
|
|
|
|
"point-of-view": "^3.5.0"
|
2019-09-04 20:05:03 +02:00
|
|
|
}
|
|
|
|
}
|