Create package.json
Browse files- package.json +19 -0
package.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "app-service-hello-world",
|
3 |
+
"description": "Simple Hello World Node.js sample for Azure App Service",
|
4 |
+
"version": "0.0.1",
|
5 |
+
"private": true,
|
6 |
+
"license": "MIT",
|
7 |
+
"author": "Microsoft",
|
8 |
+
"scripts": {
|
9 |
+
"start": "node index.js",
|
10 |
+
"dev": "nodemon"
|
11 |
+
},
|
12 |
+
"dependencies": {
|
13 |
+
"ejs": "^3.1.10",
|
14 |
+
"express": "^4.21.0"
|
15 |
+
},
|
16 |
+
"devDependencies": {
|
17 |
+
"nodemon": "^2.0.19"
|
18 |
+
}
|
19 |
+
}
|