This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@nordicsemiconductor/asset-tracker-cloud-azure",
"version": "0.0.0-development",
"description": "A reference implementation of a serverless backend for an IoT product developed using in TypeScript.",
"type": "module",
"main": "./dist/**/handler.mjs",
"scripts": {
"test": "find ./ -type f -name '*.spec.ts' -not -path './node_modules/*' -print | xargs npx tsx --no-warnings --test",
"test:e2e": "node --unhandled-rejections=strict dist/feature-runner/run-features.js ./features --print-results --progress",
"prepare": "husky && check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-azure-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-azure-js/issues"
},
"homepage": "https://docs.nordicsemi.com/bundle/nrf-asset-tracker-saga/",
"keywords": [
"nrf-asset-tracker",
"iot"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@azure/arm-appservice": "14.1.0",
"@azure/arm-deviceprovisioningservices": "5.1.0",
"@azure/cosmos": "4.0.0",
"@azure/functions": "4.4.0",
"@azure/keyvault-secrets": "4.8.0",
"@azure/ms-rest-azure-js": "2.1.0",
"@azure/ms-rest-nodeauth": "3.1.1",
"@azure/storage-blob": "12.17.0",
"@azure/storage-queue": "12.16.0",
"@bifravst/run": "1.2.0",
"@nordicsemiconductor/cell-geolocation-helpers": "6.0.0",
"@nordicsemiconductor/nrfcloud-location-services-tests": "7.0.1",
"@nordicsemiconductor/object-to-env": "7.0.7",
"@nordicsemiconductor/random-words": "8.0.1",
"@octokit/rest": "20.1.0",
"@sinclair/typebox": "0.32.20",
"azure-iot-common": "1.13.2",
"azure-iot-provisioning-service": "1.11.2",
"azure-iothub": "1.16.5",
"backoff": "2.5.0",
"mqtt": "5.5.0"
},
"devDependencies": {
"@azure/arm-iothub": "6.3.0",
"@azure/arm-resources-subscriptions": "2.1.0",
"@azure/data-tables": "13.2.2",
"@azure/logger": "1.1.1",
"@bifravst/eslint-config-typescript": "6.0.21",
"@bifravst/prettier-config": "1.0.0",
"@commitlint/config-conventional": "19.1.0",
"@nordicsemiconductor/device-helpers": "17.0.129",
"@nordicsemiconductor/e2e-bdd-test-runner": "17.0.1",
"@types/backoff": "2.5.5",
"@types/chai-subset": "1.3.5",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "20.12.7",
"@types/pem": "1.14.4",
"@types/semver": "7.5.8",
"chai-subset": "1.6.0",
"chalk": "5.3.0",
"check-node-version": "4.2.1",
"commander": "12.0.0",
"commitlint": "19.2.1",
"dependency-tree": "^10.0.9",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"semver": "7.6.0",
"tsx": "4.7.2"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/export.js",
"dist/export.d.ts",
"dist/cli/iot/certificates",
"dist/cli/process",
"LICENSE",
"README.md"
],
"deploy": {
"webApp": {
"repository": "https://github.com/NordicSemiconductor/asset-tracker-cloud-app-js.git",
"branch": "saga"
}
},
"prettier": "@bifravst/prettier-config"
}