From 6068fce398c759a5b8fe7e808e443d8d79e8c9e4 Mon Sep 17 00:00:00 2001 From: sarathrajsrinivasan <159180023+sarathrajsrinivasan@users.noreply.github.com> Date: Fri, 24 May 2024 15:56:58 -0500 Subject: [PATCH] Create package.json --- package.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..7df3de6 --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "Sample-node-project", + "version": "1.0.0", + "description": "A sample Node.js Project", + "main": "index.js", + "scripts": { + "start": "node NodeJS/index.js", + "build": "echo 'Add your build command here'", + "test": "echo 'Add your testing framework here'" + }, + "keywords": [ + "node", + "express" + ], + "author": "Sarathraj Srinivasan", + "license": "MIT", + "dependencies": { + "express":"latest", + "ejs":"latest" + } +}