some-repo/package.json
first_admin f9ae98a770
Some checks failed
continuous-integration/drone Build is failing
Add package.json
2024-08-31 08:10:36 +00:00

32 lines
633 B
JSON

{
"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"
}
}