Readlebee/package.json

48 lines
1.5 KiB
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": {
"dev": "npm run watch-js",
"start": "npm run build && npm run serve",
"watch-js": "parcel watch app/index.html --out-dir public --no-hmr --no-cache",
"serve": "node server/index.js",
"build": "parcel build app/index.html --out-dir public --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",
"choo-devtools": "^3.0.1",
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.3",
"parcel-plugin-goodie-bag": "^2.0.0",
"rimraf": "^3.0.0",
"sass": "^1.23.0-module.beta.1",
"sharp": "^0.23.0"
2019-09-04 20:05:03 +02:00
},
"dependencies": {
"cross-env": "^5.2.1",
"choo": "^7.0.0",
"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",
"fastify-formbody": "^3.1.0",
"fastify-helmet": "^3.0.1",
2019-09-07 06:17:45 +02:00
"fastify-jwt": "^1.0.0",
"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",
"picnic": "^6.5.1",
"point-of-view": "^3.5.0"
2019-09-04 20:05:03 +02:00
}
}