-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.76 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
{
"name": "@nordicsemiconductor/thingy-rocks-dashboard",
"version": "0.0.0-development",
"description": "thingy.rocks AWS IoT dashboard developed using Preact in TypeScript",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/NordicPlayground/thingy-rocks-dashboard-aws-js.git"
},
"keywords": [
"thingy-world",
"iot",
"aws",
"demo",
"preact"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NordicPlayground/thingy-rocks-dashboard-aws-js/issues"
},
"homepage": "https://github.com/NordicPlayground/thingy-rocks-dashboard-aws-js#readme",
"scripts": {
"start": "vite",
"build": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --emptyOutDir",
"prepare": "husky",
"postinstall": "cp -r node_modules/svg-country-flags/svg/ static/flags",
"test": "find ./ -type f -name '*.spec.ts' -not -path './node_modules/*' -print | xargs node --experimental-strip-types --no-warnings --test"
},
"dependencies": {
"@aws-amplify/core": "6.9.0",
"@aws-sdk/credential-provider-cognito-identity": "3.723.0",
"@aws/amazon-location-utilities-auth-helper": "1.2.1",
"@bifravst/rsrp-bar": "8.0.6",
"@hello.nrfcloud.com/proto-map": "16.1.33",
"@sentry/react": "8.48.0",
"@sentry/tracing": "7.114.0",
"compare-versions": "6.1.1",
"date-fns": "4.1.0",
"e118-iin-list": "4.3.1",
"lodash-es": "4.17.21",
"lucide-preact": "0.469.0",
"maplibre-gl": "5.0.0",
"preact": "10.25.4",
"preact-router": "4.1.2",
"styled-components": "6.1.14",
"svg-country-flags": "1.2.10"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@nordicsemiconductor/from-env": "3.0.1",
"@preact/preset-vite": "2.9.4",
"@swc/core": "1.10.4",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.5",
"@types/semver": "7.5.8",
"bootstrap": "5.3.3",
"chalk": "5.4.1",
"commitlint": "19.6.1",
"handlebars": "4.7.8",
"husky": "9.1.7",
"id128": "1.6.6",
"lint-staged": "15.3.0",
"prettier-plugin-organize-imports": "4.1.0",
"vite": "6.0.7"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}