forked from pnp/copilot-pro-dev-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 720 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "daristoranteapi",
"version": "1.0.0",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "func start --typescript --language-worker=\"--inspect=9229\" --port \"7071\" --cors \"*\"",
"build": "tsc",
"watch:teamsfx": "tsc --watch",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "npx func start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@azure/functions": "^4.3.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"@types/node": "^18.11.9",
"typescript": "^4.1.6"
},
"main": "dist/src/functions/*.js"
}