-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 980 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
27
28
29
30
31
32
33
{
"name": "create-function-app",
"version": "0.0.7",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc && cd ./src/cli && node main.js build -p '../../dist/samples/http/app.js' -o '../../out' -e '../../samples/http/.env'",
"watch": "tsc -w",
"prestart": "npm run build",
"start:host": "func start --prefix out",
"start": "npm run start:host & npm run watch",
"build:production": "npm run prestart && npm prune --production",
"test": "ts-node test.ts"
},
"bin": {
"create-function-app": "./src/cli/main.js"
},
"dependencies": {
"@types/node": "^11.13.10",
"arg": "^4.1.3",
"azure-function-express": "^2.0.0",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"json-schema-to-typescript": "^8.0.1",
"nunjucks": "^3.2.1",
"ts-node": "^8.6.2"
},
"devDependencies": {
"@azure/functions": "^1.0.2-beta2",
"typescript": "^3.3.3"
}
}