-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
{
"name": "shogun-gis-client-plugins",
"version": "1.0.1",
"description": "This is an example plugin for SHOGUN",
"keywords": [
"shogun",
"shogun-gis-client",
"react",
"react-geo",
"ol",
"typescript"
],
"repository": {
"type": "git",
"url": "git@github.com:terrestris/shogun-gis-client-plugins.git"
},
"license": "BSD-2-Clause",
"author": "terrestris GmbH & Co. KG <info@terrestris.de>",
"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",
"lint": "eslint -c eslint.config.mjs src/",
"start": "rspack serve --config rspack.dev.js",
"test": "jest --maxWorkers=50% --coverage",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"@terrestris/shogun-gis-client": "^9.0.0-next.5"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.13.0",
"@module-federation/enhanced": "^0.6.11",
"@rspack/cli": "^1.0.13",
"@rspack/core": "^1.0.13",
"@rspack/plugin-react-refresh": "^1.0.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@swc/helpers": "^0.5.13",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@terrestris/eslint-config-typescript-react": "^3.0.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "22",
"npm": ">=7"
}
}