-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 3.08 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
{
"name": "bis-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@changey/react-leaflet-markercluster": "^4.0.0-rc1",
"@hookform/resolvers": "^2.9.10",
"@reduxjs/toolkit": "^1.8.1",
"@sentry/react": "^7.13.0",
"@sentry/tracing": "^7.13.0",
"@szhsin/react-menu": "^3.1.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/react-modal": "^3.13.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.6",
"dompurify": "^2.4.1",
"geolib": "^3.3.3",
"gh-pages": "^5.0.0",
"jspdf": "^2.5.1",
"leaflet": "^1.9.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "^18.2.0",
"react-hook-form": "^7.35.0",
"react-icons": "^4.4.0",
"react-leaflet": "^4.1.0",
"react-modal": "^3.16.1",
"react-password-strength-bar": "^0.4.1",
"react-quill": "^2.0.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-select": "^5.4.0",
"react-tooltip-lite": "^1.12.0",
"redux-persist": "^6.0.0",
"source-map-explorer": "^2.5.3",
"typescript": "^4.6.0",
"utility-types": "^3.10.0",
"web-vitals": "^2.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.1/xlsx-0.19.1.tgz",
"yup": "^1.0.0-beta.8"
},
"scripts": {
"preanalyze": "yarn build",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "yarn e2e // react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md,css,scss}\" package.json docs/**/*.md cypress/**/*.{ts,json}",
"generate-api": "npx @rtk-query/codegen-openapi ./src/app/services/openapi-config.json",
"pree2e": "PORT=3000 BROWSER=none yarn start & wait-on http://localhost:3000",
"e2e": "cypress run",
"poste2e": "sleep 5 && killall node",
"generate-translations": "ts-node -O '{\"module\":\"commonjs\"}' bin/generateTranslations.ts",
"postgenerate-translations": "prettier --write \"src/config/static/translations.ts\"",
"gt": "yarn generate-translations"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/dompurify": "^2.4.0",
"@types/leaflet": "^1.8.0",
"@types/lodash": "^4.14.185",
"cypress": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"ts-deep-pick": "^0.2.2",
"ts-node": "^10.9.1",
"type-fest": "^3.2.0",
"wait-on": "^7.0.1",
"yaml": "^2.2.0"
}
}