This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
{
"name": "@nordicsemiconductor/asset-tracker-cloud-device-ui",
"version": "0.0.0-development",
"description": "Provides a user interface via a web application to interact with a simulated device for the nRF Asset Tracker.",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-device-ui-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-ui-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-ui-js#readme",
"keywords": [
"nrf-asset-tracker",
"iot",
"web-app",
"device-simulator"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@nordicsemiconductor/asset-tracker-cloud-docs": "31.0.0",
"@sinclair/typebox": "0.31.14",
"bootstrap": "5.3.1",
"classnames": "2.3.2",
"inter-ui": "3.19.3",
"leaflet": "1.9.4",
"mcc-mnc-list": "1.1.11",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "12.0.86",
"@types/leaflet": "1.9.4",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "4.0.4",
"eslint-config-react-app": "7.0.1",
"typescript": "5.2.2",
"vite": "4.4.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.jsx,.tsx"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"browserslist": [
">3%",
"last 1 version",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": "@nordicsemiconductor/asset-tracker-cloud-code-style/.prettierrc"
}