-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.71 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
{
"name": "react-geo-client-template",
"version": "1.0.0",
"private": true,
"description": "This is a react-geo client template project",
"keywords": [
"react",
"react-geo",
"ol",
"typescript"
],
"repository": {
"type": "git",
"url": "[email protected]:terrestris/react-geo-client-template.git"
},
"license": "BSD-2-Clause",
"author": "terrestris GmbH & Co. KG <[email protected]>",
"files": [
"dist"
],
"scripts": {
"build": "rspack --config rspack.prod.js",
"build:analyze": "npm run build -- --analyze",
"check": "npm run typecheck && npm run lint && npm run test && npm run test:ui",
"lint": "eslint -c eslint.config.mjs src/",
"start": "rspack serve --config rspack.dev.js",
"test": "jest --coverage",
"test:ui": "playwright test",
"tsc": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"@terrestris/base-util": "^3.0.0",
"@terrestris/ol-util": "^21.0.0",
"@terrestris/react-geo": "^26.2.1",
"@terrestris/react-util": "^10.0.1",
"@terrestris/shogun-util": "^10.2.0",
"antd": "^5.22.5",
"i18next": "^24.1.0",
"i18next-browser-languagedetector": "^8.0.2",
"normalize.css": "^8.0.1",
"ol": "^10.3.1",
"ol-mapbox-style": "^12.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.4",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.49.1",
"@rspack/cli": "^1.1.6",
"@rspack/core": "^1.1.6",
"@rspack/plugin-react-refresh": "^1.0.1",
"@swc/helpers": "^0.5.15",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"babel-jest": "^29.7.0",
"buffer": "^6.0.3",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"ignore-loader": "^0.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"react-refresh": "^0.16.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": ">=20",
"npm": ">=9"
}
}