From 93b87621a56cf1a7abd887c142969cf7c840e4e1 Mon Sep 17 00:00:00 2001 From: Ben Jones Date: Tue, 8 Oct 2024 16:14:31 +1100 Subject: [PATCH] Update package.json --- package.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b13789..6eef759 100644 --- a/package.json +++ b/package.json @@ -1 +1,18 @@ - +{ + "name": "programming_for_the_web_task_template", + "version": "1.0.0", + "description": "A template for the demo Node.JS Progressive Web Application with a SQLite backend.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node index.js" + }, + "keywords": [], + "author": "Ben Jones", + "license": "CC-BY-NC-SA-4.0", + "dependencies": { + "body-parser": "^1.20.3", + "express": "^4.18.2", + "sqlite3": "^5.1.6" + } +}