-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 3.3 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
{
"name": "mvj-ui",
"version": "1.0.0",
"description": "City of Helsinki Land lease UI",
"main": "src/index.tsx",
"author": "Jori Lindell <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint src",
"start": "vite",
"compile": "vite build",
"precommit": "npm-run-all lint",
"prepush": "npm-run-all test",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"dependencies": {
"classnames": "^2.2.6",
"connected-react-router": "^6.9.3",
"copy-to-clipboard": "^3.2.0",
"date-fns": "^2.0.0-beta.4",
"dotenv": "^8.0.0",
"file-saver": "^2.0.5",
"font-awesome": "^4.7.0",
"foundation-sites": "6.5.3",
"hds-react": "^3.9.0",
"history": "^4.9.0",
"leaflet": "^1.5.1",
"leaflet-draw": "^1.0.4",
"leaflet-geosearch": "^2.7.0",
"leaflet-measure-path": "^1.4.2",
"leaflet-zoombox": "^0.5.1",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"proj4": "^2.5.0",
"proj4leaflet": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^16.9",
"react-datepicker": "2.8.0",
"react-dom": "^16.9",
"react-dual-listbox": "^2.0.0",
"react-foundation": "^0.9.7",
"react-leaflet": "^2.8.0",
"react-leaflet-draw": "0.19.0",
"react-leaflet-fullscreen": "^1.0.2",
"react-redux": "^7.1.0",
"react-redux-toastr": "^7.6.12",
"react-resize-detector": "^4.2.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8",
"react-scroll-to-component": "^1.0.2",
"react-select": "^3.0.4",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-form": "^8.2.5",
"redux-saga": "^1.0.5",
"utility-types": "^3.11.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.23.9",
"@babel/helper-environment-visitor": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.9.0",
"@rollup/plugin-babel": "^6.0.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/history": "^5.0.0",
"@types/leaflet": "^1.5.23",
"@types/leaflet-draw": "^1.0.11",
"@types/lodash": "^4.17.1",
"@types/proj4leaflet": "^1.0.2",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.24",
"@types/react-redux": "^7.1.33",
"@types/redux-actions": "^2.6.5",
"@types/redux-form": "^8.2.5",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-istanbul": "^2.0.5",
"@vitest/ui": "^2.0.5",
"babel-plugin-module-resolver": "^5.0.0",
"cross-env": "^5.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"globals": "^15.9.0",
"jsdom": "^24.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.41",
"postcss-url": "^10.1.3",
"sass": "^1.77.8",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^5.3.5",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-static-copy": "^2.0.0",
"vitest": "^2.0.5"
},
"resolutions": {
"@types/react": "^16"
}
}