forked from Azure-Samples/app-service-web-html-get-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "samplewebapp",
"version": "1.0.0",
"description": "---\r page_type: sample\r name: \"HTML sample for Azure App Service\"\r description: \"This is a simple HTML/CSS/JS web app that you can deploy to Azure App Service using Git.\"\r languages:\r - javascript\r - html\r products:\r - azure\r - azure-app-service\r ---",
"main": "ie-emulation-modes-warning.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browserify": "browserify ./public/dist/appinsights.js -o ./public/dist/bundle.js",
"tsc": "tsc --outDir ./public/dist ./public/ts/appinsights.ts",
"build": "npm run tsc && npm run browserify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kryalama/app-service-web-html-get-started.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kryalama/app-service-web-html-get-started/issues"
},
"homepage": "https://github.com/kryalama/app-service-web-html-get-started#readme",
"dependencies": {
"@microsoft/applicationinsights-clickanalytics-js": "^2.5.10",
"@microsoft/applicationinsights-web": "^2.5.10",
"express": "^4.17.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"typescript": "^4.1.2"
}
}