Create package.json

This commit is contained in:
CxJuice 2023-10-04 23:21:55 +08:00 committed by GitHub
parent 65c75bc1d8
commit 1636c7da17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "json-service",
"version": "1.0.0",
"description": "A simple service to provide JSON data",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"express": "^4.17.1"
},
"engines": {
"node": "14.x"
}
}