-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.38 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
{
"name": "smalsuolis-web",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@aplinkosministerija/design-system": "^0.0.84",
"@tanstack/react-query": "^5.20.5",
"@tanstack/react-query-devtools": "^5.20.5",
"@types/node": "^20.12.12",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.3.5",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"formik": "^2.4.5",
"leaflet": "^1.9.4",
"leaflet-routing-machine": "^3.2.12",
"lodash": "^4.17.21",
"lt-codes": "ambrazasp/lt-codes",
"react": "^18.2.0",
"react-datepicker": "^4.11.0",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-markdown": "^9.0.1",
"react-resize-detector": "^8.0.4",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"react-toastify": "^9.1.2",
"styled-components": "^6.1.8",
"typescript": "^4.9.5",
"universal-cookie": "^4.0.4",
"vite": "^5.1.7",
"vite-plugin-pwa": "^0.18.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@aplinkosministerija/biip-prettier-config": "^1.1.0",
"@aplinkosministerija/eslint-config-biip-react": "^1.0.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@types/lodash": "^4.14.192",
"@types/react-datepicker": "^4.10.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"prettier": "@aplinkosministerija/biip-prettier-config",
"eslintConfig": {
"extends": "@aplinkosministerija/eslint-config-biip-react"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,html,css}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}