-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
137 lines (137 loc) · 4.35 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@terrestris/shogun-admin",
"version": "16.0.0",
"description": "The admin UI for the SHOGun Web-mapping backend.",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"clean:dist": "rimraf ./dist/*",
"lint": "eslint -c .eslintrc.cjs --ext .js,.ts,.tsx src/",
"lint:fix": "eslint -c .eslintrc.cjs --ext .js,.ts,.tsx --fix src/",
"prepare": "husky",
"semantic-release": "npm run clean; npm run build; npx semantic-release",
"start": "vite",
"test": "jest --coverage --maxWorkers=50%",
"test:watch": "jest --watch",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/shogun-admin.git"
},
"author": "terrestris GmbH & Co. KG <[email protected]>",
"keywords": [
"SHOGun",
"WebMapping"
],
"license": "Apache-2.0 ",
"bugs": {
"url": "https://github.com/terrestris/shogun-admin/issues"
},
"homepage": "https://github.com/terrestris/shogun-admin#readme",
"dependencies": {
"@ant-design/icons": "5.5.1",
"@ant-design/pro-components": "^2.7.10",
"@casualbot/jest-sonar-reporter": "2.4.0",
"@monaco-editor/react": "4.6.0",
"@terrestris/base-util": "2.0.0",
"@terrestris/ol-util": "19.0.1",
"@terrestris/shogun-util": "9.0.0",
"@uiw/react-md-editor": "4.0.4",
"antd": "5.17.2",
"i18next": "23.15.1",
"i18next-browser-languagedetector": "8.0.0",
"js-logger": "1.6.1",
"js-md5": "0.8.3",
"json-schema": "0.4.0",
"keycloak-js": "25.0.6",
"lodash": "4.17.21",
"moment": "2.30.1",
"monaco-editor": "0.52.0",
"ol": "10.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hotkeys-hook": "4.5.1",
"react-i18next": "15.0.2",
"react-router-dom": "6.27.0",
"recoil": "0.7.7",
"shapefile.js": "1.1.4"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.25.8",
"@babel/preset-react": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@playwright/test": "1.47.2",
"@originjs/vite-plugin-federation": "^1.3.5",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@terrestris/eslint-config-typescript": "5.0.0",
"@terrestris/eslint-config-typescript-react": "2.0.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.13",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/react-redux": "7.1.34",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/eslint-plugin-tslint": "7.0.2",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"babel-plugin-import": "^1.13.8",
"buffer": "6.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.6",
"isomorphic-fetch": "3.0.0",
"jest": "29.7.0",
"jest-dom": "4.0.0",
"jest-environment-jsdom": "29.7.0",
"less": "4.2.0",
"mini-css-extract-plugin": "2.9.1",
"openapi-types": "12.1.3",
"regenerator-runtime": "0.14.1",
"rimraf": "6.0.1",
"semantic-release": "24.1.2",
"typescript": "5.6.3",
"vite": "^5.2.13",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-top-level-await": "^1.4.1",
"vitest": "^2.0.5",
"whatwg-fetch": "3.6.20"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
},
"@casualbot/jest-sonar-reporter": {
"suiteName": "jest tests",
"outputDirectory": "coverage",
"outputName": "jest-report.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true",
"relativePaths": "true"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}