forked from astarte-platform/astarte-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.45 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
{
"name": "astarte-dashboard",
"version": "1.1.0-dev",
"description": "Astarte dashboard",
"keywords": [
"astarte",
"dashboard",
"iot"
],
"contributors": [
{
"name": "Mattia Pavinati",
"email": "[email protected]",
"url": "https://ispirata.com/"
},
{
"name": "Davide Briani",
"email": "[email protected]",
"url": "https://ispirata.com/"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/astarte-platform/astarte-dashboard"
},
"scripts": {
"start": "PORT=8080 react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"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",
"jest:test": "react-scripts test",
"cypress:test": "cypress run",
"cypress:open": "cypress open"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"cypress": "^6.5.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"mock-socket": "^9.1.5",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fortawesome/fontawesome-free": "^5.15.2",
"@projectstorm/react-canvas-core": "^6.7.4",
"@projectstorm/react-diagrams": "^6.7.4",
"@reduxjs/toolkit": "^1.9.0",
"@rjsf/bootstrap-4": "^2.4.2",
"@rjsf/core": "^2.4.2",
"@types/color": "^3.0.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.188",
"@types/phoenix": "^1.5.4",
"@types/react": "^17.0.3",
"@types/react-datepicker": "^3.1.2",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.24",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/uuid": "^8.3.4",
"@types/yup": "^0.29.11",
"ajv": "^6.12.6",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4",
"closest": "^0.0.1",
"color": "^3.1.3",
"dagre": "^0.8.5",
"dayjs": "^1.11.6",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"history": "^5.3.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"phoenix": "^1.6.15",
"react": "^17.0.1",
"react-bootstrap": "^1.5.0",
"react-chartjs-2": "^2.11.1",
"react-datepicker": "^3.4.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^6.4.3",
"react-scripts": "4.0.3",
"react-syntax-highlighter": "^15.5.0",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.56.1",
"uuid": "^8.3.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"
]
}
}