-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3 KB
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
{
"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 && case \"$npm_command\" in install|ci) check-node-version --package ;; esac",
"test": "node --no-warnings --experimental-transform-types --test --test-reporter spec \"!(node_modules|e2e-tests)/**/*.spec.ts\"",
"test:e2e": "npx playwright test --project chromium"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.1128.0",
"@aws-sdk/client-cloudfront": "3.1128.0",
"@bifravst/cloudformation-helpers": "10.0.1",
"@bifravst/eslint-config-typescript": "8.0.5",
"@bifravst/from-env": "4.0.0",
"@bifravst/prettier-config": "2.0.0",
"@bifravst/random-words": "9.0.0",
"@commitlint/config-conventional": "21.2.2",
"@playwright/test": "1.62.1",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "26.5.0",
"@types/semver": "7.8.0",
"@typescript/native": "npm:typescript@7.0.2",
"check-node-version": "4.2.1",
"commitlint": "21.2.2",
"glob": "13.0.6",
"globstar": "1.0.0",
"husky": "9.1.7",
"jsonwebtoken": "9.0.3",
"lint-staged": "17.5.0",
"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.2",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vite": "8.2.2",
"vite-plugin-solid": "2.11.14",
"yaml": "2.9.0"
},
"dependencies": {
"@hello.nrfcloud.com/proto": "16.0.0",
"@hello.nrfcloud.com/proto-map": "17.1.1",
"@sinclair/typebox": "0.34.52",
"e118-iin-list": "4.5.1",
"lucide": "1.43.0",
"maplibre-gl": "6.9.0",
"the-new-css-reset": "1.11.3"
},
"engines": {
"node": ">=24.19.0 <25",
"npm": ">=12.0.2 <13"
},
"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
}
]
]
}
}