-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.74 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": "@hello.nrfcloud.com/map",
"version": "0.0.0-development",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/map.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/map/issues"
},
"homepage": "https://hello.nrfcloud.com/map",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"hello-nrfcloud"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"description": "Show thousands of public cellular IoT devices on a map",
"scripts": {
"start": "vite",
"start:e2e": "vite -c e2e-tests/vite.config.e2e.ts",
"build": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --emptyOutDir",
"prepare": "husky",
"test": "npx globstar -- npx tsx --test --test-reporter spec \"!(node_modules|e2e-tests)/**/*.spec.ts\"",
"test:e2e": "npx playwright test --project chromium"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.695.0",
"@aws-sdk/client-cloudfront": "3.693.0",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/eslint-config-typescript": "6.1.18",
"@bifravst/from-env": "3.0.2",
"@bifravst/prettier-config": "1.1.1",
"@bifravst/random-words": "8.0.2",
"@commitlint/config-conventional": "19.5.0",
"@playwright/test": "1.48.1",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.9.0",
"@types/semver": "7.5.8",
"commitlint": "19.5.0",
"glob": "11.0.0",
"globstar": "1.0.0",
"husky": "9.1.7",
"jsonwebtoken": "9.0.2",
"rehype-external-links": "^3.0.0",
"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",
"tsx": "4.19.2",
"vite": "5.4.11",
"vite-plugin-solid": "2.10.2",
"yaml": "2.6.0"
},
"dependencies": {
"@hello.nrfcloud.com/proto": "15.3.21",
"@hello.nrfcloud.com/proto-map": "16.1.19",
"@sinclair/typebox": "0.33.22",
"e118-iin-list": "4.1.4",
"lucide": "0.460.0",
"maplibre-gl": "4.7.1",
"the-new-css-reset": "1.11.3"
},
"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",
{
"successComment": false,
"failTitle": false
}
]
]
}
}