-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
26 lines (26 loc) · 819 Bytes
/
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
{
"name": "azure-function-http-typescript-jest-quickstart",
"scripts": {
"build": "tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"test": "jest --verbose"
},
"description": "Minimal setup to get you started with unit-testing HTTP-triggered Azure Function",
"devDependencies": {
"@azure/functions": "^1.0.1-beta1",
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.7",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"stub-azure-function-context": "^2.0.0-alpha.4",
"ts-jest": "^26.4.4",
"typescript": "^3.3.3"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}