-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "@connctd/ettlmuehle-water-level",
"description": "Data visualization integration for Ettlmuehle website to show current and historical water levels",
"version": "0.1.0",
"private": true,
"author": "Tobiasz Walczak <tobiasz.walczak@connctd.com>",
"engines": {
"node": ">=14.0.0",
"yarn": "^1.22.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "serve -l 3000 --single dist",
"lint": "eslint ./src --ext ts,tsx,js,jsx",
"test": "cypress run",
"test:chrome": "cypress run --browser chrome"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"axios": "^0.21.4",
"echarts": "^5.1.2",
"echarts-for-react": "^3.0.1",
"graphql": "^15.5.1",
"graphql-request": "^3.4.0",
"mdi-react": "^7.5.0",
"moment": "^2.29.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-query": "^3.23.1",
"react-responsive": "^9.0.0-beta.3",
"react-router-dom": "^5.2.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@connctd/eslint-config-typescript": "1.1.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"@vitejs/plugin-react-refresh": "^1.3.1",
"csstype": "^3.0.8",
"cypress": "^7.5.0",
"eslint": "7.15.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"ip": "^1.1.5",
"serve": "^12.0.0",
"typescript": "4.1.2",
"vite": "^2.3.7",
"wait-on": "^5.3.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}