This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.99 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "devicescript-gateway",
"version": "0.1.0",
"description": "Development Gateway infrastructure supporting DeviceScript.",
"license": "MIT",
"private": true,
"files": [
"./dist/**"
],
"scripts": {
"preinstall": "git submodule update --init --recursive && git pull",
"setup": "yarn install --frozen-lockfile",
"connection": "cd infra && zx ./connection.mjs",
"provision": "cd infra && zx ./provision.mjs",
"unprovision": "cd infra && zx ./unprovision.mjs",
"debug": "cd infra && zx ./debug.mjs",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/src/index.js",
"azurite": "azurite --location ./.azurite --silent",
"azurite:dbg": "azurite --location ./.azurite --debug ./.azurite/debug.log",
"dev": "yarn build && zx dev.mjs --local",
"dev:azure": "yarn build && zx dev.mjs --azure",
"logs": "node infra/logs.mjs",
"deploy": "node infra/zipdeploy.mjs"
},
"dependencies": {
"@azure/data-tables": "^13.2.0",
"@azure/event-hubs": "^5.8.0",
"@azure/identity": "^3.1.3",
"@azure/keyvault-secrets": "^4.6.0",
"@azure/storage-blob": "^12.11.0",
"@azure/storage-queue": "^12.13.0",
"@fastify/basic-auth": "^4.0.0",
"@fastify/cors": "^8.1.0",
"@fastify/static": "^6.5.0",
"@fastify/websocket": "^7.1.0",
"aedes": "^0.48.0",
"applicationinsights": "^2.5.0",
"dotenv-expand": "^10.0.0",
"fastify": "^4.9.2",
"http-errors": "^2.0.0",
"json5": "^2.2.3",
"mqtt": "^4.3.7",
"node-fetch": "^2.6.7",
"openapi-types": "^12.1.0",
"pino-pretty": "^9.1.1",
"swagger-ui-dist": "^4.15.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@octokit/core": "^4.2.0",
"@types/http-errors": "^1.8.2",
"@types/node": "16.x",
"@types/ws": "^8.5.3",
"archiver": "^5.3.1",
"azurite": "^3.23.0",
"dotenv": "^16.0.3",
"libsodium-wrappers": "^0.7.11",
"open": "^8.4.2",
"typescript": "^4.0.0",
"xmlbuilder2": "^3.0.2",
"zx": "^7.2.0"
}
}