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
28 lines (28 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1015 Bytes
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
{
"name": "treyresearch",
"version": "1.1.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",
"reset-local-db": "node ./scripts/db-setup.js UseDevelopmentStorage=true --reset",
"storage": "azurite --silent --location ./_storage_emulator --debug ./_storage_emulator/debug.log"
},
"dependencies": {
"@azure/data-tables": "^13.2.2",
"@azure/functions": "^4.3.0",
"azurite": "^3.26.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"env-cmd": "^10.1.0",
"semver": "^7.7.2",
"typescript": "^4.1.6"
},
"main": "dist/src/functions/*.js"
}