This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
124 lines (124 loc) · 3.49 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
124
{
"name": "@nordicsemiconductor/asset-tracker-cloud-app",
"version": "0.0.0-development",
"description": "The nRF Asset Tracker Web Application is a reference single-page application (SPA) developed using create-react-app in TypeScript.",
"scripts": {
"start": "PUBLIC_URL=/ react-scripts --openssl-legacy-provider --max_old_space_size=4096 start",
"build": "react-scripts --openssl-legacy-provider --max_old_space_size=4096 build",
"test": "npx tsx --test ./src/**/*.spec.ts",
"eject": "react-scripts eject",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-app-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-app-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-app-js#readme",
"keywords": [
"nrf-asset-tracker",
"iot",
"web-app"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@amcharts/amcharts4": "4.10.38",
"@microsoft/signalr": "7.0.14",
"@nordicsemiconductor/cell-geolocation-helpers": "6.0.0",
"@nordicsemiconductor/rsrp-bar": "6.0.0",
"@nordicsemiconductor/timestream-helpers": "6.0.1",
"@react-leaflet/core": "1.0.2",
"azure-iothub": "1.16.4",
"date-fns": "2.30.0",
"deepmerge": "4.3.1",
"e118-iin-list": "3.1.0",
"fast-deep-equal": "3.1.3",
"fp-ts": "2.16.1",
"history": "5.3.0",
"intro.js": "6.0.0",
"io-ts": "2.2.20",
"io-ts-types": "0.5.19",
"leaflet": "1.9.4",
"lodash": "4.17.21",
"mcc-mnc-list": "1.1.11",
"memoize-one": "6.0.0",
"msal": "1.4.18",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-leaflet": "3.1.0",
"react-router-dom": "5.3.4",
"reactstrap": "8.10.1",
"styled-components": "5.3.11",
"twemoji": "14.0.2",
"use-debounce": "9.0.4",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@commitlint/config-conventional": "18.4.3",
"@nordicsemiconductor/asset-tracker-cloud-code-style": "11.0.186",
"@types/intro.js": "5.1.5",
"@types/lodash": "4.14.202",
"@types/node": "20.10.1",
"@types/react": "18.2.39",
"@types/react-dom": "18.2.17",
"@types/react-leaflet": "2.8.3",
"@types/react-router-dom": "5.3.3",
"@types/semver": "7.5.8",
"@types/styled-components": "5.1.34",
"@types/twemoji": "13.1.1",
"@types/uuid": "9.0.8",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.7",
"react-scripts": "4.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"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"
],
"babelMacros": {
"styledComponents": {
"pure": true
}
}
}