@dartcom/ui-kit 3.9.7 → 3.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/buttons/button/button.stories.d.ts +1 -1
- package/dist/components/buttons/button/button.stories.d.ts.map +1 -1
- package/dist/components/buttons/delete/delete.stories.d.ts +1 -1
- package/dist/components/buttons/delete/delete.stories.d.ts.map +1 -1
- package/dist/components/buttons/edit/edit.stories.d.ts +1 -1
- package/dist/components/buttons/edit/edit.stories.d.ts.map +1 -1
- package/dist/components/card/card.stories.d.ts +1 -1
- package/dist/components/card/card.stories.d.ts.map +1 -1
- package/dist/components/checkbox/checkbox.stories.d.ts +1 -1
- package/dist/components/checkbox/checkbox.stories.d.ts.map +1 -1
- package/dist/components/drag-list/drag-list.stories.d.ts +1 -1
- package/dist/components/drag-list/drag-list.stories.d.ts.map +1 -1
- package/dist/components/drag-list/draggable/types.d.ts +1 -1
- package/dist/components/drag-list/droppable/types.d.ts +1 -1
- package/dist/components/drag-list/types.d.ts +1 -1
- package/dist/components/form/form.stories.d.ts +1 -1
- package/dist/components/form/form.stories.d.ts.map +1 -1
- package/dist/components/layers/leaflet/hooks/useGetLeafletLayer.d.ts +1 -1
- package/dist/components/layers/leaflet/leaflet.stories.d.ts +1 -1
- package/dist/components/layers/leaflet/leaflet.stories.d.ts.map +1 -1
- package/dist/components/layers/leaflet/types.d.ts +1 -1
- package/dist/components/list/list.d.ts +1 -1
- package/dist/components/list/list.stories.d.ts +1 -1
- package/dist/components/list/list.stories.d.ts.map +1 -1
- package/dist/components/loader/card.stories.d.ts +1 -1
- package/dist/components/loader/card.stories.d.ts.map +1 -1
- package/dist/components/modal/index.d.ts +4 -0
- package/dist/components/modal/index.d.ts.map +1 -0
- package/dist/components/modal/modal.d.ts +5 -0
- package/dist/components/modal/modal.d.ts.map +1 -0
- package/dist/components/modal/modal.stories.d.ts +8 -0
- package/dist/components/modal/modal.stories.d.ts.map +1 -0
- package/dist/components/modal/store.d.ts +10 -0
- package/dist/components/modal/store.d.ts.map +1 -0
- package/dist/components/modal/styles.d.ts +3 -0
- package/dist/components/modal/styles.d.ts.map +1 -0
- package/dist/components/modal/types.d.ts +10 -0
- package/dist/components/modal/types.d.ts.map +1 -0
- package/dist/components/select/select.d.ts +1 -1
- package/dist/components/select/select.stories.d.ts +1 -1
- package/dist/components/select/select.stories.d.ts.map +1 -1
- package/dist/configs/global/global.d.ts +1 -1
- package/dist/index.cjs +26 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/hooks/constants.d.ts +1 -1
- package/dist/pages/auth/auth.stories.d.ts +1 -1
- package/dist/pages/auth/auth.stories.d.ts.map +1 -1
- package/dist/pages/auth/types.d.ts +1 -1
- package/dist/providers/initialize/types.d.ts +1 -1
- package/dist/providers/mobx/mobx.d.ts +2 -0
- package/dist/providers/mobx/mobx.d.ts.map +1 -1
- package/dist/providers/mobx/store.d.ts +2 -0
- package/dist/providers/mobx/store.d.ts.map +1 -1
- package/dist/providers/types.d.ts +1 -1
- package/dist/services/api/api.d.ts +1 -21
- package/dist/services/api/api.d.ts.map +1 -1
- package/package.json +147 -145
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const apiService: import("
|
|
1
|
+
export declare const apiService: import("../../services").ApiService;
|
|
2
2
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.stories.d.ts","sourceRoot":"","sources":["../../../src/pages/auth/auth.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"auth.stories.d.ts","sourceRoot":"","sources":["../../../src/pages/auth/auth.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAO5D,OAAO,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAC;AAE7B,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,QAAQ,CAyC/B,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAErB,CAAC"}
|
|
@@ -2,10 +2,12 @@ import * as React from 'react';
|
|
|
2
2
|
import { rootStore } from './store';
|
|
3
3
|
export declare const StoreContext: React.Context<{
|
|
4
4
|
authStore: import("..").AuthStore;
|
|
5
|
+
modalStore: import("../../components/modal").ModalStore;
|
|
5
6
|
}>;
|
|
6
7
|
export declare const DartcomMobxProvider: React.FC<React.PropsWithChildren>;
|
|
7
8
|
declare const useRootStore: () => {
|
|
8
9
|
authStore: import("..").AuthStore;
|
|
10
|
+
modalStore: import("../../components/modal").ModalStore;
|
|
9
11
|
};
|
|
10
12
|
export { rootStore, useRootStore };
|
|
11
13
|
//# sourceMappingURL=mobx.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mobx.d.ts","sourceRoot":"","sources":["../../../src/providers/mobx/mobx.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"mobx.d.ts","sourceRoot":"","sources":["../../../src/providers/mobx/mobx.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,YAAY;;;EAAiC,CAAC;AAE3D,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,iBAAiB,CAIjE,CAAC;AAEF,QAAA,MAAM,YAAY;;;CAUjB,CAAC;AAEF,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/providers/mobx/store.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C,cAAM,SAAS;IACb,SAAS,YAAmB;
|
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/providers/mobx/store.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAEtD,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C,cAAM,SAAS;IACb,SAAS,YAAmB;IAE5B,UAAU,aAAoB;CAC/B;AAED,eAAO,MAAM,SAAS,WAAkB,CAAC"}
|
|
@@ -1,25 +1,5 @@
|
|
|
1
1
|
import { AxiosRequestConfig } from 'axios';
|
|
2
|
-
export
|
|
3
|
-
get: <T>(props: {
|
|
4
|
-
url: string;
|
|
5
|
-
config?: AxiosRequestConfig;
|
|
6
|
-
}) => Promise<T>;
|
|
7
|
-
post: <R, B>(props: {
|
|
8
|
-
url: string;
|
|
9
|
-
body?: B;
|
|
10
|
-
config?: AxiosRequestConfig<B>;
|
|
11
|
-
}) => Promise<R>;
|
|
12
|
-
put: <R, B>(props: {
|
|
13
|
-
url: string;
|
|
14
|
-
body?: B;
|
|
15
|
-
config?: AxiosRequestConfig<B>;
|
|
16
|
-
}) => Promise<R>;
|
|
17
|
-
delete: <R>(props: {
|
|
18
|
-
url: string;
|
|
19
|
-
config?: AxiosRequestConfig;
|
|
20
|
-
}) => Promise<R>;
|
|
21
|
-
};
|
|
22
|
-
export declare class ApiService implements ApiServiceMethods {
|
|
2
|
+
export declare class ApiService {
|
|
23
3
|
private client;
|
|
24
4
|
constructor(baseURL?: string);
|
|
25
5
|
private setupInterceptors;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/services/api/api.ts"],"names":[],"mappings":"AAAA,OAAc,EAGZ,kBAAkB,EAEnB,MAAM,OAAO,CAAC;AAIf,
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/services/api/api.ts"],"names":[],"mappings":"AAAA,OAAc,EAGZ,kBAAkB,EAEnB,MAAM,OAAO,CAAC;AAIf,qBAAa,UAAU;IACrB,OAAO,CAAC,MAAM,CAAgB;gBAElB,OAAO,CAAC,EAAE,MAAM;IAY5B,OAAO,CAAC,iBAAiB;IAwBnB,GAAG,CAAC,CAAC,EAAE,EACX,GAAG,EACH,MAAM,GACP,EAAE;QACD,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;KAChC;IAMK,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,EACf,GAAG,EACH,IAAI,EACJ,MAAM,GACP,EAAE;QACD,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,CAAC,EAAE,CAAC,CAAC;QACT,MAAM,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;KAChC;IAMK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,EACd,GAAG,EACH,IAAI,EACJ,MAAM,GACP,EAAE;QACD,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,CAAC,EAAE,CAAC,CAAC;QACT,MAAM,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;KAChC;IAMK,MAAM,CAAC,CAAC,EAAE,EACd,GAAG,EACH,MAAM,GACP,EAAE;QACD,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,CAAC,EAAE,kBAAkB,CAAC;KAC7B;CAKF"}
|
package/package.json
CHANGED
|
@@ -1,145 +1,147 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dartcom/ui-kit",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "Кастомная библиотека комопнентов Dartcom",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.esm.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "rollup -c",
|
|
21
|
-
"build:watch": "rollup -c -w",
|
|
22
|
-
"test": "jest",
|
|
23
|
-
"test:watch": "jest --watch",
|
|
24
|
-
"storybook": "storybook dev -p 6006",
|
|
25
|
-
"build-storybook": "storybook build",
|
|
26
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
27
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
28
|
-
"format": "prettier --write src/**/*.{ts,tsx}",
|
|
29
|
-
"prepare": "husky",
|
|
30
|
-
"prepublishOnly": "npm run lint && npm test && npm run build",
|
|
31
|
-
"library:publish": "npm publish --access public",
|
|
32
|
-
"version:patch": "npm version patch",
|
|
33
|
-
"version:minor": "npm version minor",
|
|
34
|
-
"version:major": "npm version major"
|
|
35
|
-
},
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/jeni2d/tiles_library.git"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"react",
|
|
42
|
-
"typescript",
|
|
43
|
-
"ui",
|
|
44
|
-
"components",
|
|
45
|
-
"library"
|
|
46
|
-
],
|
|
47
|
-
"author": "Artemidas",
|
|
48
|
-
"license": "ISC",
|
|
49
|
-
"bugs": {
|
|
50
|
-
"url": "https://github.com/jeni2d/tiles_library/issues"
|
|
51
|
-
},
|
|
52
|
-
"homepage": "https://github.com/jeni2d/tiles_library#readme",
|
|
53
|
-
"peerDependencies": {
|
|
54
|
-
"@emotion/react": "^11.14.0",
|
|
55
|
-
"@emotion/styled": "^11.14.1",
|
|
56
|
-
"@mui/icons-material": "^7.3.6",
|
|
57
|
-
"@mui/lab": "^7.0.1-beta.20",
|
|
58
|
-
"@mui/material": "^7.3.6",
|
|
59
|
-
"@mui/x-date-pickers": "^8.21.0",
|
|
60
|
-
"react": "^19.2.0",
|
|
61
|
-
"react-dom": "^19.2.0"
|
|
62
|
-
},
|
|
63
|
-
"devDependencies": {
|
|
64
|
-
"@eslint/compat": "^2.0.0",
|
|
65
|
-
"@eslint/eslintrc": "^3.3.3",
|
|
66
|
-
"@eslint/js": "^9.39.1",
|
|
67
|
-
"@rollup/plugin-alias": "^6.0.0",
|
|
68
|
-
"@rollup/plugin-commonjs": "^29.0.0",
|
|
69
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
70
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
71
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
72
|
-
"@rollup/plugin-yaml": "^4.1.2",
|
|
73
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
74
|
-
"@semantic-release/git": "^10.0.1",
|
|
75
|
-
"@storybook/addon-docs": "^10.1.
|
|
76
|
-
"@storybook/addon-onboarding": "^10.1.
|
|
77
|
-
"@storybook/addon-themes": "^10.1.
|
|
78
|
-
"@storybook/react-vite": "^10.1.
|
|
79
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
80
|
-
"@testing-library/react": "^16.3.1",
|
|
81
|
-
"@types/jest": "^30.0.0",
|
|
82
|
-
"@types/leaflet": "^1.9.21",
|
|
83
|
-
"@types/node": "^24.10.1",
|
|
84
|
-
"@types/react": "^19.2.7",
|
|
85
|
-
"@types/react-dom": "^19.2.3",
|
|
86
|
-
"@types/rollup-plugin-peer-deps-external": "^2.2.6",
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
88
|
-
"@typescript-eslint/parser": "^8.48.1",
|
|
89
|
-
"axios": "^1.13.2",
|
|
90
|
-
"eslint": "^9.39.1",
|
|
91
|
-
"eslint-config-prettier": "^10.1.8",
|
|
92
|
-
"eslint-plugin-jest": "^28.14.0",
|
|
93
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
94
|
-
"eslint-plugin-react": "^7.37.5",
|
|
95
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
96
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
97
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
98
|
-
"globals": "^16.5.0",
|
|
99
|
-
"husky": "^9.1.7",
|
|
100
|
-
"jest": "^30.2.0",
|
|
101
|
-
"jest-environment-jsdom": "^30.2.0",
|
|
102
|
-
"lint-staged": "^16.2.7",
|
|
103
|
-
"prettier": "^3.7.4",
|
|
104
|
-
"rollup": "^4.53.3",
|
|
105
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
106
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
107
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
108
|
-
"rollup-plugin-
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"ts-
|
|
113
|
-
"
|
|
114
|
-
"typescript
|
|
115
|
-
"typescript-
|
|
116
|
-
"
|
|
117
|
-
"vite
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"@dnd-kit/
|
|
130
|
-
"@
|
|
131
|
-
"@
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"react-
|
|
138
|
-
"
|
|
139
|
-
"react-
|
|
140
|
-
"react-
|
|
141
|
-
"react-
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
|
|
145
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@dartcom/ui-kit",
|
|
3
|
+
"version": "3.10.0",
|
|
4
|
+
"description": "Кастомная библиотека комопнентов Dartcom",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.esm.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.esm.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rollup -c",
|
|
21
|
+
"build:watch": "rollup -c -w",
|
|
22
|
+
"test": "jest",
|
|
23
|
+
"test:watch": "jest --watch",
|
|
24
|
+
"storybook": "storybook dev -p 6006",
|
|
25
|
+
"build-storybook": "storybook build",
|
|
26
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
27
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
28
|
+
"format": "prettier --write src/**/*.{ts,tsx}",
|
|
29
|
+
"prepare": "husky",
|
|
30
|
+
"prepublishOnly": "npm run lint && npm test && npm run build",
|
|
31
|
+
"library:publish": "npm publish --access public",
|
|
32
|
+
"version:patch": "npm version patch",
|
|
33
|
+
"version:minor": "npm version minor",
|
|
34
|
+
"version:major": "npm version major"
|
|
35
|
+
},
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/jeni2d/tiles_library.git"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"react",
|
|
42
|
+
"typescript",
|
|
43
|
+
"ui",
|
|
44
|
+
"components",
|
|
45
|
+
"library"
|
|
46
|
+
],
|
|
47
|
+
"author": "Artemidas",
|
|
48
|
+
"license": "ISC",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/jeni2d/tiles_library/issues"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://github.com/jeni2d/tiles_library#readme",
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@emotion/react": "^11.14.0",
|
|
55
|
+
"@emotion/styled": "^11.14.1",
|
|
56
|
+
"@mui/icons-material": "^7.3.6",
|
|
57
|
+
"@mui/lab": "^7.0.1-beta.20",
|
|
58
|
+
"@mui/material": "^7.3.6",
|
|
59
|
+
"@mui/x-date-pickers": "^8.21.0",
|
|
60
|
+
"react": "^19.2.0",
|
|
61
|
+
"react-dom": "^19.2.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@eslint/compat": "^2.0.0",
|
|
65
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
66
|
+
"@eslint/js": "^9.39.1",
|
|
67
|
+
"@rollup/plugin-alias": "^6.0.0",
|
|
68
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
69
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
70
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
71
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
72
|
+
"@rollup/plugin-yaml": "^4.1.2",
|
|
73
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
74
|
+
"@semantic-release/git": "^10.0.1",
|
|
75
|
+
"@storybook/addon-docs": "^10.1.10",
|
|
76
|
+
"@storybook/addon-onboarding": "^10.1.10",
|
|
77
|
+
"@storybook/addon-themes": "^10.1.10",
|
|
78
|
+
"@storybook/react-vite": "^10.1.10",
|
|
79
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
80
|
+
"@testing-library/react": "^16.3.1",
|
|
81
|
+
"@types/jest": "^30.0.0",
|
|
82
|
+
"@types/leaflet": "^1.9.21",
|
|
83
|
+
"@types/node": "^24.10.1",
|
|
84
|
+
"@types/react": "^19.2.7",
|
|
85
|
+
"@types/react-dom": "^19.2.3",
|
|
86
|
+
"@types/rollup-plugin-peer-deps-external": "^2.2.6",
|
|
87
|
+
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
88
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
89
|
+
"axios": "^1.13.2",
|
|
90
|
+
"eslint": "^9.39.1",
|
|
91
|
+
"eslint-config-prettier": "^10.1.8",
|
|
92
|
+
"eslint-plugin-jest": "^28.14.0",
|
|
93
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
94
|
+
"eslint-plugin-react": "^7.37.5",
|
|
95
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
96
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
97
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
98
|
+
"globals": "^16.5.0",
|
|
99
|
+
"husky": "^9.1.7",
|
|
100
|
+
"jest": "^30.2.0",
|
|
101
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
102
|
+
"lint-staged": "^16.2.7",
|
|
103
|
+
"prettier": "^3.7.4",
|
|
104
|
+
"rollup": "^4.53.3",
|
|
105
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
106
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
107
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
108
|
+
"rollup-plugin-tsc-alias": "^1.1.4",
|
|
109
|
+
"rollup-plugin-tsconfig-paths": "^1.5.2",
|
|
110
|
+
"semantic-release": "^25.0.2",
|
|
111
|
+
"storybook": "^10.1.10",
|
|
112
|
+
"ts-jest": "^29.4.6",
|
|
113
|
+
"ts-node": "^10.9.2",
|
|
114
|
+
"typescript": "^5.9.3",
|
|
115
|
+
"typescript-eslint": "^8.48.1",
|
|
116
|
+
"typescript-transform-paths": "^3.5.5",
|
|
117
|
+
"vite": "^7.2.6",
|
|
118
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
119
|
+
"eslint-plugin-storybook": "10.1.10"
|
|
120
|
+
},
|
|
121
|
+
"lint-staged": {
|
|
122
|
+
"src/**/*.{ts,tsx}": [
|
|
123
|
+
"eslint --fix",
|
|
124
|
+
"prettier --write",
|
|
125
|
+
"git add"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"dependencies": {
|
|
129
|
+
"@dnd-kit/core": "^6.3.1",
|
|
130
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
131
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
132
|
+
"@hookform/resolvers": "^5.2.2",
|
|
133
|
+
"@tanstack/react-query": "^5.90.12",
|
|
134
|
+
"date-fns": "^4.1.0",
|
|
135
|
+
"leaflet": "^1.9.4",
|
|
136
|
+
"mobx": "^6.15.0",
|
|
137
|
+
"mobx-react-lite": "^4.1.1",
|
|
138
|
+
"notistack": "^3.0.2",
|
|
139
|
+
"react-error-boundary": "^6.0.0",
|
|
140
|
+
"react-hook-form": "^7.68.0",
|
|
141
|
+
"react-leaflet": "^5.0.0",
|
|
142
|
+
"react-router-dom": "^7.10.1",
|
|
143
|
+
"react-uuid": "^2.0.0",
|
|
144
|
+
"tangram": "^0.22.0",
|
|
145
|
+
"yup": "^1.7.1"
|
|
146
|
+
}
|
|
147
|
+
}
|