diff --git a/package.json b/package.json new file mode 100644 index 0000000..b194a5d --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "my-application", + "version": "1.0.0", + "description": "A sample Node.js application", + "main": "index.js", + "scripts": { + "start": "node index.js", + "build": "webpack --mode production", + "test": "jest" + }, + "repository": { + "type": "git", + "url": "https://github.com/yourusername/my-application.git" + }, + "keywords": [ + "node", + "express", + "sample" + ], + "author": "Your Name", + "license": "MIT", + "dependencies": { + "express": "^4.17.3", + "body-parser": "^1.19.1" + }, + "devDependencies": { + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "jest": "^28.1.3" + } +}