Spaces:
Sleeping
Sleeping
Create package.json
Browse files- package.json +16 -0
package.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "my-web-app",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "A simple web application using Express and Morgan",
|
5 |
+
"main": "index.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node index.js",
|
8 |
+
"build": "echo 'Nothing to build'"
|
9 |
+
},
|
10 |
+
"author": "Your Name",
|
11 |
+
"license": "ISC",
|
12 |
+
"dependencies": {
|
13 |
+
"express": "^4.17.1",
|
14 |
+
"morgan": "^1.10.0"
|
15 |
+
}
|
16 |
+
}
|