forked from astarte-platform/astarte-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.38 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
{
"type": "module",
"name": "astarte-dashboard",
"version": "1.3.0-dev",
"description": "Astarte dashboard",
"keywords": [
"astarte",
"dashboard",
"iot"
],
"contributors": [
{
"name": "Mattia Pavinati",
"email": "[email protected]",
"url": "https://secomind.com/"
},
{
"name": "Davide Briani",
"email": "[email protected]",
"url": "https://secomind.com/"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/astarte-platform/astarte-dashboard"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint --fix src --ext .js,.jsx,.ts,.tsx",
"check-lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write src",
"check-format": "prettier --check src",
"check-types": "tsc --noEmit",
"check-types:watch": "npm run check-types -- --watch",
"test": "vitest",
"cypress:test": "cypress run",
"cypress:open": "cypress open"
},
"devDependencies": {
"cypress": "^12.16.0",
"prettier": "^3.2.5"
},
"dependencies": {
"@astarte-platform/react-bootstrap": "^5.15.0",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-free": "^6.5.1",
"@projectstorm/react-canvas-core": "^7.0.2",
"@projectstorm/react-diagrams": "^7.0.3",
"@reduxjs/toolkit": "^2.1.0",
"@rjsf/core": "^5.17.0",
"@rjsf/validator-ajv8": "^5.17.0",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/color": "^3.0.6",
"@types/jsrsasign": "^10.5.12",
"@types/lodash": "^4.14.202",
"@types/phoenix": "^1.6.4",
"@types/react": "^18.2.55",
"@types/react-datepicker": "^4.19.6",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/uuid": "^9.0.8",
"@types/yup": "^0.29.11",
"@vitejs/plugin-react": "^4.2.1",
"ajv": "^8.12.0",
"axios": "^1.6.7",
"bootstrap": "^5.3.2",
"chart.js": "^4.4.1",
"closest": "^0.0.1",
"color": "^4.2.3",
"dagre": "^0.8.5",
"dayjs": "^1.11.10",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-testing-library": "^6.2.0",
"history": "^5.3.0",
"jsdom": "^24.0.0",
"jsrsasign": "^11.1.0",
"lodash": "^4.17.21",
"mock-socket": "^9.3.1",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"phoenix": "^1.7.11",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^6.1.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.0",
"react-syntax-highlighter": "^15.5.0",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.70.0",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"vite": "^5.0.12",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2",
"yup": "^0.29.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}