a | b/package.json | ||
---|---|---|---|
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.8", |
||
14 | "express": "^4.18.1" |
||
15 | }, |
||
16 | "devDependencies": { |
||
17 | "nodemon": "^2.0.19" |
||
18 | } |
||
19 | } |