Add package.json

This commit is contained in:
2026-03-15 21:57:03 +09:00
parent ddedb8ea2f
commit 94012a734a

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "nodejs-hello-world-api",
"version": "1.0.0",
"description": "A simple Node.js project to create a Hello World API using Express.js.",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"dependencies": {
"express": "^4.17.1",
"body-parser": "^1.19.0"
}
}