-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.8 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
{
"name": "@nordicsemiconductor/thingy-rocks-cloud",
"version": "0.0.0-development",
"description": "Cloud backend for the thingy.rocks AWS IoT dashboard developed using AWS CDK in TypeScript.",
"type": "module",
"scripts": {
"test": "node --experimental-strip-types --test ./**/*.spec.ts",
"prepare": "husky && check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicPlayground/thingy-rocks-cloud-aws-js.git"
},
"bugs": {
"url": "https://github.com/NordicPlayground/thingy-rocks-cloud-aws-js/issues"
},
"homepage": "https://github.com/NordicPlayground/thingy-rocks-cloud-aws-js#readme",
"keywords": [
"thingy-world",
"iot",
"aws",
"cdk",
"demo"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "3.721.0",
"@aws-sdk/client-dynamodb": "3.721.0",
"@aws-sdk/client-iot": "3.721.0",
"@aws-sdk/client-iot-data-plane": "3.721.0",
"@aws-sdk/client-s3": "3.722.0",
"@aws-sdk/client-ssm": "3.721.0",
"@aws-sdk/client-timestream-query": "3.721.0",
"@aws-sdk/util-dynamodb": "3.721.0",
"@bifravst/aws-cdk-lambda-helpers": "3.0.5",
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@hello.nrfcloud.com/proto-map": "5.6.3",
"@protobuf-ts/plugin": "2.9.4",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.4",
"@types/aws-lambda": "8.10.147",
"@types/glob": "8.1.0",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.5",
"@types/yazl": "2.4.5",
"aws-cdk": "2.174.0",
"aws-cdk-lib": "2.174.0",
"cdk": "2.174.0",
"chalk": "5.4.1",
"check-node-version": "4.2.1",
"constructs": "10.4.2",
"glob": "11.0.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"yazl": "3.3.1"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@nordicsemiconductor/from-env": "3.0.1",
"@nordicsemiconductor/timestream-helpers": "6.0.2",
"@protobuf-ts/runtime": "2.9.4",
"@sinclair/typebox": "0.32.35",
"ajv": "8.17.1",
"aws-iot-device-sdk-v2": "1.21.1",
"jsonata": "2.0.6",
"lodash-es": "4.17.21",
"mqtt": "5.10.3",
"p-retry": "6.2.1",
"p-throttle": "7.0.0"
}
}