2019-09-04 12:05:03 -06:00
|
|
|
{
|
2019-09-10 12:41:06 -06:00
|
|
|
"name": "readlebee",
|
2019-09-04 12:05:03 -06:00
|
|
|
"version": "0.0.0",
|
|
|
|
|
"description": "An attempt at a viable alternative to Goodreads",
|
|
|
|
|
"main": "index.html",
|
2019-09-10 12:41:06 -06:00
|
|
|
"repository": "https://gitlab.com/Alamantus/Readlebee.git",
|
2019-09-04 12:05:03 -06:00
|
|
|
"author": "Robbie Antenesse <dev@alamantus.com>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
2019-09-17 15:10:46 -06:00
|
|
|
"dev": "concurrently --kill-others \"npm run watch-js\" \"npm run serve\"",
|
2019-09-09 14:17:16 -06:00
|
|
|
"start": "npm run build && cross-env NODE_ENV=production npm run serve",
|
2019-09-08 13:44:01 -06:00
|
|
|
"watch-js": "parcel watch app/index.html --out-dir public --no-hmr --no-cache",
|
|
|
|
|
"serve": "node server/index.js",
|
2019-09-13 20:23:54 -06:00
|
|
|
"build": "npm run process-images && npm run bundle",
|
|
|
|
|
"bundle": "parcel build app/index.html --out-dir public --no-source-maps --no-cache",
|
2019-09-08 21:45:35 -06:00
|
|
|
"process-images": "node ./process-images.js",
|
|
|
|
|
"clear": "rimraf public/{*,.*}"
|
2019-09-04 12:05:03 -06:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"autoprefixer": "^9.6.1",
|
2019-09-07 13:54:44 -06:00
|
|
|
"choo-devtools": "^3.0.1",
|
2019-09-09 14:17:16 -06:00
|
|
|
"concurrently": "^4.1.2",
|
2019-09-18 10:00:25 -06:00
|
|
|
"cross-env": "^6.0.0",
|
2019-09-12 11:35:43 -06:00
|
|
|
"faker": "^4.1.0",
|
2019-09-07 13:54:44 -06:00
|
|
|
"parcel-bundler": "^1.12.3",
|
|
|
|
|
"parcel-plugin-goodie-bag": "^2.0.0",
|
|
|
|
|
"rimraf": "^3.0.0",
|
2019-09-06 18:06:55 -06:00
|
|
|
"sass": "^1.23.0-module.beta.1",
|
|
|
|
|
"sharp": "^0.23.0"
|
2019-09-04 12:05:03 -06:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2019-09-09 16:19:02 -06:00
|
|
|
"babel-polyfill": "^6.26.0",
|
2019-09-07 13:54:44 -06:00
|
|
|
"choo": "^7.0.0",
|
2019-09-05 17:20:24 -06:00
|
|
|
"fastify": "^2.8.0",
|
|
|
|
|
"fastify-caching": "^5.0.0",
|
|
|
|
|
"fastify-compress": "^0.11.0",
|
2019-09-06 22:17:45 -06:00
|
|
|
"fastify-cookie": "^3.1.0",
|
2019-09-05 17:20:24 -06:00
|
|
|
"fastify-helmet": "^3.0.1",
|
2019-09-06 22:17:45 -06:00
|
|
|
"fastify-jwt": "^1.0.0",
|
2019-09-18 17:15:06 -06:00
|
|
|
"fastify-sequelize": "^1.0.4",
|
2019-09-05 17:20:24 -06:00
|
|
|
"fastify-static": "^2.5.0",
|
|
|
|
|
"make-promises-safe": "^5.0.0",
|
2019-09-18 17:15:06 -06:00
|
|
|
"mysql2": "^1.7.0",
|
2019-09-06 17:20:27 -06:00
|
|
|
"node-fetch": "^2.6.0",
|
2019-09-17 15:10:46 -06:00
|
|
|
"pg": "^7.12.1",
|
2019-09-18 17:15:06 -06:00
|
|
|
"pg-hstore": "^2.3.3",
|
|
|
|
|
"picnic": "^6.5.1",
|
|
|
|
|
"sqlite": "^3.0.3"
|
2019-09-04 12:05:03 -06:00
|
|
|
}
|
|
|
|
|
}
|