wcz-test 3.4.9 → 4.0.1

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/package.json CHANGED
@@ -1,85 +1,84 @@
1
- {
2
- "name": "wcz-test",
3
- "displayName": "WCZ Layout",
4
- "version": "3.4.9",
5
- "private": false,
6
- "sideEffects": false,
7
- "type": "module",
8
- "types": "./dist/index.d.ts",
9
- "main": "./dist/index.cjs",
10
- "module": "./dist/index.js",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "require": "./dist/index.cjs"
15
- }
16
- },
17
- "files": [
18
- "dist"
19
- ],
20
- "scripts": {
21
- "dev": "vite dev",
22
- "npm-install": "npm install",
23
- "npm-update": "npm update",
24
- "lint-fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
25
- "prepublishOnly": "if exist dist rmdir /s /q dist && tsc && vite build"
26
- },
27
- "dependencies": {
28
- "@tanstack/react-router-ssr-query": "^1.131.14",
29
- "axios": "^1.8.4",
30
- "file-saver": "^2.0.5",
31
- "i18next": "^25.0.0",
32
- "i18next-browser-languagedetector": "^8.0.4",
33
- "i18next-http-backend": "^3.0.2",
34
- "next-auth": "5.0.0-beta.29",
35
- "react-dropzone": "^14.3.8",
36
- "react-i18next": "^15.4.1",
37
- "react-number-format": "^5.4.4",
38
- "tus-js-client": "^4.3.1",
39
- "use-local-storage-state": "^19.5.0",
40
- "uuidv7": "^1.0.2"
41
- },
42
- "devDependencies": {
43
- "@eslint/js": "^9.28.0",
44
- "@tanstack/eslint-plugin-query": "^5.78.0",
45
- "@tanstack/eslint-plugin-router": "^1.120.17",
46
- "@types/file-saver": "^2.0.7",
47
- "@types/node": "^22.5.4",
48
- "@types/react": "^19.0.8",
49
- "@types/react-dom": "^19.0.3",
50
- "@vitejs/plugin-react": "^4.6.0",
51
- "babel-plugin-react-compiler": "^19.1.0-rc.3",
52
- "eslint": "^9.28.0",
53
- "eslint-plugin-import": "^2.31.0",
54
- "eslint-plugin-react": "^7.37.5",
55
- "eslint-plugin-react-hooks": "^5.2.0",
56
- "eslint-plugin-unicorn": "^59.0.1",
57
- "husky": "^9.1.7",
58
- "react-markdown": "^10.1.0",
59
- "typescript": "^5.7.2",
60
- "typescript-eslint": "^8.33.1",
61
- "vite-plugin-checker": "^0.9.3",
62
- "vite-plugin-pwa": "^1.0.2",
63
- "vite-tsconfig-paths": "^5.1.4",
64
- "vite-plugin-dts": "^4.5.4",
65
- "@rollup/rollup-win32-x64-msvc": "^4.50.2",
66
- "@esbuild/win32-x64": "^0.25.10"
67
- },
68
- "peerDependencies": {
69
- "@emotion/react": "11.x",
70
- "@emotion/styled": "11.x",
71
- "@mui/icons-material": "7.x",
72
- "@mui/material": "7.x",
73
- "@mui/x-data-grid-premium": "8.x",
74
- "@mui/x-date-pickers-pro": "8.x",
75
- "@tanstack/react-form": "1.x",
76
- "@tanstack/react-query": "5.x",
77
- "@tanstack/react-router": "1.x",
78
- "@tanstack/react-start": "1.x",
79
- "dayjs": "1.x",
80
- "react": "19.x",
81
- "react-dom": "19.x",
82
- "vite": "7.x",
83
- "zod": "4.x"
84
- }
1
+ {
2
+ "name": "wcz-test",
3
+ "displayName": "WCZ Layout",
4
+ "version": "4.0.1",
5
+ "private": false,
6
+ "sideEffects": false,
7
+ "type": "module",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "dev": "vite dev",
23
+ "prepublishOnly": "tsup ./src/index.ts --dts",
24
+ "npm-install": "npm install",
25
+ "npm-update": "npm update",
26
+ "lint-fix": "eslint --fix \"src/**/*.{ts,tsx}\""
27
+ },
28
+ "dependencies": {
29
+ "@tanstack/react-router-ssr-query": "^1.131.14",
30
+ "axios": "^1.8.4",
31
+ "file-saver": "^2.0.5",
32
+ "i18next": "^25.0.0",
33
+ "i18next-browser-languagedetector": "^8.0.4",
34
+ "i18next-http-backend": "^3.0.2",
35
+ "jwt-decode": "^4.0.0",
36
+ "keycloak-js": "^26.2.0",
37
+ "next-auth": "5.0.0-beta.29",
38
+ "react-dropzone": "^14.3.8",
39
+ "react-i18next": "^15.4.1",
40
+ "react-number-format": "^5.4.4",
41
+ "tus-js-client": "^4.3.1",
42
+ "use-local-storage-state": "^19.5.0",
43
+ "uuidv7": "^1.0.2"
44
+ },
45
+ "devDependencies": {
46
+ "@eslint/js": "^9.28.0",
47
+ "@tanstack/eslint-plugin-query": "^5.78.0",
48
+ "@tanstack/eslint-plugin-router": "^1.120.17",
49
+ "@types/file-saver": "^2.0.7",
50
+ "@types/node": "^22.5.4",
51
+ "@types/react": "^19.0.8",
52
+ "@types/react-dom": "^19.0.3",
53
+ "@vitejs/plugin-react": "^4.6.0",
54
+ "eslint": "^9.28.0",
55
+ "eslint-plugin-import": "^2.31.0",
56
+ "eslint-plugin-react": "^7.37.5",
57
+ "eslint-plugin-react-hooks": "^5.2.0",
58
+ "eslint-plugin-unicorn": "^59.0.1",
59
+ "react-markdown": "^10.1.0",
60
+ "tsup": "^8.5.0",
61
+ "typescript": "^5.7.2",
62
+ "typescript-eslint": "^8.33.1",
63
+ "vite-plugin-checker": "^0.9.3",
64
+ "vite-plugin-pwa": "^1.0.2",
65
+ "vite-tsconfig-paths": "^5.1.4"
66
+ },
67
+ "peerDependencies": {
68
+ "@emotion/react": "11.x",
69
+ "@emotion/styled": "11.x",
70
+ "@mui/icons-material": "7.x",
71
+ "@mui/material": "7.x",
72
+ "@mui/x-data-grid-premium": "8.x",
73
+ "@mui/x-date-pickers-pro": "8.x",
74
+ "@tanstack/react-form": "1.x",
75
+ "@tanstack/react-query": "5.x",
76
+ "@tanstack/react-router": "1.x",
77
+ "@tanstack/react-start": "1.x",
78
+ "dayjs": "1.x",
79
+ "react": "19.x",
80
+ "react-dom": "19.x",
81
+ "vite": "7.x",
82
+ "zod": "4.x"
83
+ }
85
84
  }