forked from terrestris/react-geo-client-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 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
{
"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.gitt"
},
"license": "BSD-2-Clause",
"author": "terrestris GmbH & Co. KG <[email protected]>",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:analyze": "BUNDLE_ANALYZE=true npm run build",
"check": "npm run typecheck && npm run lint && npm run test && npm run test:ui",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx src/",
"start": "webpack serve --config webpack.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": "^1.8.1",
"@terrestris/base-util": "^1.0.1",
"@terrestris/ol-util": "^6.0.1",
"@terrestris/react-geo": "^17.0.0",
"antd": "^4.19.5",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"normalize.css": "^8.0.1",
"ol": "^6.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.16.7",
"react-redux": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@playwright/test": "^1.21.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@terrestris/eslint-config-typescript": "^2.1.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"babel-plugin-import": "^1.13.5",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"html-webpack-plugin": "^5.5.0",
"ignore-loader": "^0.1.2",
"jest": "^27.5.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.6.0",
"react-refresh": "0.12.0",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.2",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"devEngines": {
"node": ">=14",
"npm": ">=7"
}
}