snipette-crowdfunding-site/package.json
Hippo a33ba1dc9c Use nodemon for auto-reload of Express server
This is so that we don't have to keep restarting the server every
time we make a change. Parcel was taking care of this for the
static files like HTML and CSS, but not for the Express server
itself: that required calling in Nodemon to do the job.
2022-01-05 22:09:46 +05:30

35 lines
1.1 KiB
JSON

{
"name": "snipette-crowdfunding-site",
"version": "1.0.0",
"description": "Website for the Snipette Analog crowdfunding campaign",
"repository": "https://gitlab.com/snipettemag/snipette-crowdfunding-site",
"author": "Badri Sunderarajan <badri@snipettemag.com>",
"license": "MIT",
"scripts": {
"watch": "npm-run-all --parallel 'watch:*'",
"watch:html": "parcel src/index.htm",
"watch:css": "tailwindcss -i src/style.css -o src/assets/tailwind.css",
"watch:server": "nodemon server/index.js",
"build": "npm-run-all 'build:*'",
"build:css": "tailwindcss -i src/style.css -o src/assets/tailwind.css",
"build:html": "parcel build src/index.htm",
"serve": "yarn build && node server/index.js"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.7"
},
"dependencies": {
"bookshelf": "^1.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"knex": "^0.95.15",
"sqlite3": "^5.0.2",
"twing": "^5.1.0"
}
}