-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.59 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
{
"name": "@hello.nrfcloud.com/web",
"version": "0.0.0-development",
"description": "Retrieve real-time data from your long-range Nordic Semiconductor Development Kit within seconds",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/web.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/web/issues"
},
"homepage": "https://hello.nrfcloud.com",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"hello-nrfcloud"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"scripts": {
"start": "vite",
"build": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --emptyOutDir && cp -v ./manifest.json ./build/client/",
"prepare": "husky",
"test": "find ./ -type f -name *.spec.ts -not -path './e2e-tests/*' -not -path './node_modules/*' | xargs npx tsx --test --test-reporter spec",
"test:e2e": "npx playwright test e2e-tests/",
"start:e2e": "vite -c e2e-tests/vite.config.e2e.ts",
"postinstall": "cp -r node_modules/svg-country-flags/svg/ static/flags"
},
"dependencies": {
"@hello.nrfcloud.com/proto": "15.3.34",
"@hello.nrfcloud.com/proto-map": "16.1.33",
"@sentry/browser": "8.48.0",
"@sinclair/typebox": "0.34.13",
"classnames": "2.5.1",
"code-128-encoder": "3.1.1",
"compare-versions": "6.1.1",
"date-fns": "4.1.0",
"e118-iin-list": "4.3.1",
"html5-qrcode": "2.3.8",
"lodash-es": "4.17.21",
"lucide-preact": "0.469.0",
"maplibre-gl": "4.7.1",
"nanoid": "5.0.9",
"preact": "10.25.4",
"qrcode": "1.5.4",
"semver": "7.6.3",
"svg-country-flags": "1.2.10",
"yaml": "2.7.0"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.723.0",
"@aws-sdk/client-cloudfront": "3.723.0",
"@aws-sdk/client-iam": "3.723.0",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/from-env": "3.0.2",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@playwright/test": "1.49.1",
"@preact/preset-vite": "2.9.4",
"@swc/core": "1.10.4",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.5",
"@types/qrcode": "1.5.5",
"@types/semver": "7.5.8",
"@types/websocket": "1.0.10",
"aws-cdk": "2.174.1",
"aws-cdk-lib": "2.174.1",
"bootstrap": "5.3.3",
"cdk": "2.174.1",
"chalk": "5.4.1",
"commitlint": "19.6.1",
"glob": "11.0.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"nock": "14.0.0-beta.19",
"playwright": "1.49.1",
"preact-render-to-string": "6.5.12",
"rehype-format": "5.0.1",
"rehype-stringify": "10.0.1",
"remark": "15.0.1",
"remark-extract-frontmatter": "3.2.0",
"remark-frontmatter": "5.0.0",
"remark-rehype": "11.1.1",
"tsmatchers": "5.0.2",
"tsx": "4.19.2",
"vike": "0.4.212",
"websocket": "1.0.35"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,html,css}": [
"prettier --write"
]
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
}
}