-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.79 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
{
"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": "npx tsx --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.549.0",
"@aws-sdk/client-dynamodb": "3.549.0",
"@aws-sdk/client-iot": "3.549.0",
"@aws-sdk/client-iot-data-plane": "3.549.0",
"@aws-sdk/client-s3": "3.550.0",
"@aws-sdk/client-ssm": "3.549.0",
"@aws-sdk/client-timestream-query": "3.549.0",
"@aws-sdk/util-dynamodb": "3.549.0",
"@bifravst/aws-cdk-lambda-helpers": "1.2.6",
"@bifravst/eslint-config-typescript": "6.0.20",
"@bifravst/prettier-config": "1.0.0",
"@commitlint/config-conventional": "19.1.0",
"@protobuf-ts/plugin": "2.9.4",
"@swc/cli": "0.3.12",
"@swc/core": "1.4.12",
"@types/aws-lambda": "8.10.137",
"@types/glob": "8.1.0",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.5",
"@types/yazl": "2.4.5",
"aws-cdk": "2.136.0",
"aws-cdk-lib": "2.136.0",
"cdk": "2.136.0",
"chalk": "5.3.0",
"check-node-version": "4.2.1",
"constructs": "10.3.0",
"glob": "10.3.12",
"husky": "9.0.11",
"prettier": "3.2.5",
"tsx": "4.7.2",
"yazl": "2.5.1"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@hello.nrfcloud.com/proto-map": "5.0.3",
"@nordicsemiconductor/from-env": "3.0.1",
"@nordicsemiconductor/timestream-helpers": "6.0.2",
"@protobuf-ts/runtime": "2.9.4",
"@sinclair/typebox": "0.32.20",
"ajv": "8.12.0",
"aws-iot-device-sdk-v2": "1.19.1",
"jsonata": "2.0.4",
"lodash-es": "4.17.21",
"mqtt": "5.5.0",
"p-retry": "6.2.0",
"p-throttle": "6.1.0",
"protobufjs": "7.2.6"
}
}