-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.19 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
{
"name": "open-data-dashboard",
"description": "A web application for visualizing open data",
"version": "0.1.0",
"contributors": [
{
"name": "Chiara Scheurer",
"url": "https://github.com/ChiaraScheurer"
},
{
"name": "Abdullah Atak",
"url": "https://github.com/Abdryy"
},
{
"name": "Christian Holst",
"url": "https://github.com/ChromatisGit"
},
{
"name": "Jan Kuhnmünch",
"url": "https://github.com/Zerdados"
},
{
"name": "Daniel Purtov",
"url": "https://github.com/danielptv"
}
],
"type": "module",
"homepage": "https://github.com/stadt-karlsruhe/open-data-dashboard",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"dev:cypress": "cross-env CONFIGURATION_DIR=./__tests__/cypress/config next dev",
"start:cypress": "cross-env CONFIGURATION_DIR=./__tests__/cypress/config next start",
"lint": "next lint --dir src __tests__ --no-cache && tsc --noEmit",
"test": "jest --coverage",
"test:config-validation": "jest --testPathPattern='validateConfiguration\\.test\\.ts' --noStackTrace",
"docs": "mkdocs serve"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "1.6.7",
"@swc/jest": "0.2.36",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@tsconfig/node21": "21.0.3",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.9.12",
"@types/node": "^20",
"@types/proj4": "2.5.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"bootstrap": "5.3.3",
"bootstrap-icons": "1.11.3",
"cross-env": "^7.0.3",
"cypress": "^13.13.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.4.0",
"eslint-plugin-regexp": "2.6.0",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unicorn": "54.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "30.0.0-alpha.5",
"json-2-csv": "5.5.1",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"local-cypress": "^1.2.6",
"lru-cache": "^10.3.0",
"netlify-plugin-out-of-minutes": "1.1.0",
"next": "14.2.4",
"next-intl": "3.15.3",
"prettier-eslint": "16.3.0",
"proj4": "2.11.0",
"react": "18.3.1",
"react-bootstrap": "2.10.4",
"react-bootstrap-typeahead": "6.3.2",
"react-code-blocks": "0.1.6",
"react-data-table-component": "7.6.2",
"react-dom": "18.3.1",
"react-leaflet": "^4.2.1",
"react-minisearch": "6.3.0",
"recharts": "2.12.7",
"sass": "1.77.6",
"sharp": "^0.33.4",
"styled-components": "6.1.11",
"ts-deepmerge": "7.0.0",
"ts-node": "10.9.2",
"typescript": "^5.5.3",
"use-debounce": "10.0.1",
"yaml": "2.4.5",
"zod": "^3.23.8",
"zod-validation-error": "3.3.0"
}
}