some-repo/package.json

32 lines
633 B
JSON
Raw Normal View History

2024-08-31 08:10:36 +00:00
{
"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"
}
}