|
1 | 1 | { |
2 | 2 | "name": "cln-application-frontend", |
3 | | - "version": "25.12", |
| 3 | + "version": "26.01", |
4 | 4 | "description": "Core lightning application frontend", |
5 | 5 | "private": true, |
6 | 6 | "license": "MIT", |
7 | 7 | "scripts": { |
8 | 8 | "start": "PORT=4300 react-scripts start", |
9 | 9 | "build": "react-scripts build", |
10 | | - "test": "react-scripts test", |
| 10 | + "test": "react-scripts test --testTimeout=30000", |
11 | 11 | "lint": "eslint src --ext .js,.jsx,.ts,.tsx" |
12 | 12 | }, |
13 | 13 | "dependencies": { |
14 | | - "@fortawesome/fontawesome-svg-core": "6.4.2", |
15 | | - "@fortawesome/free-solid-svg-icons": "6.4.2", |
16 | | - "@fortawesome/react-fontawesome": "0.2.0", |
17 | | - "@reduxjs/toolkit": "2.7.0", |
18 | | - "axios": "1.6.7", |
19 | | - "bootstrap": "5.3.2", |
| 14 | + "@fortawesome/fontawesome-svg-core": "7.1.0", |
| 15 | + "@fortawesome/free-solid-svg-icons": "7.1.0", |
| 16 | + "@fortawesome/react-fontawesome": "3.1.0", |
| 17 | + "@reduxjs/toolkit": "2.11.0", |
| 18 | + "axios": "1.13.2", |
| 19 | + "bootstrap": "5.3.8", |
20 | 20 | "copy-to-clipboard": "3.3.3", |
21 | 21 | "crypto-js": "4.2.0", |
22 | | - "framer-motion": "10.16.5", |
| 22 | + "framer-motion": "12.23.24", |
23 | 23 | "moment": "2.30.1", |
24 | | - "node-sass": "9.0.0", |
25 | | - "qrcode.react": "3.1.0", |
26 | | - "react": "18.2.0", |
27 | | - "react-bootstrap": "2.10.1", |
28 | | - "react-datepicker": "8.1.0", |
29 | | - "react-dom": "18.2.0", |
| 24 | + "qrcode.react": "4.2.0", |
| 25 | + "react": "19.2.0", |
| 26 | + "react-bootstrap": "2.10.10", |
| 27 | + "react-datepicker": "8.10.0", |
| 28 | + "react-dom": "19.2.0", |
30 | 29 | "react-perfect-scrollbar": "1.5.8", |
31 | 30 | "react-redux": "9.2.0", |
32 | | - "react-router-dom": "6.30.0", |
33 | | - "recharts": "2.15.1", |
34 | | - "redux-thunk": "3.1.0" |
| 31 | + "react-router-dom": "7.9.6", |
| 32 | + "recharts": "3.5.0", |
| 33 | + "redux-thunk": "3.1.0", |
| 34 | + "sass": "1.94.2" |
35 | 35 | }, |
36 | 36 | "devDependencies": { |
37 | | - "@testing-library/jest-dom": "6.4.2", |
38 | | - "@testing-library/react": "14.2.1", |
39 | | - "@testing-library/user-event": "14.5.1", |
40 | | - "@types/jest": "29.5.12", |
41 | | - "@types/node": "20.9.4", |
42 | | - "@types/react": "18.2.61", |
43 | | - "@types/react-dom": "18.2.19", |
| 37 | + "@testing-library/jest-dom": "6.9.1", |
| 38 | + "@testing-library/react": "16.3.0", |
| 39 | + "@testing-library/user-event": "14.6.1", |
| 40 | + "@types/jest": "30.0.0", |
| 41 | + "@types/node": "24.10.1", |
| 42 | + "@types/react": "19.2.7", |
| 43 | + "@types/react-dom": "19.2.3", |
44 | 44 | "@types/redux-mock-store": "1.5.0", |
45 | | - "axios-mock-adapter": "1.22.0", |
46 | | - "canvas": "2.11.2", |
| 45 | + "axios-mock-adapter": "2.1.0", |
| 46 | + "canvas": "3.2.0", |
47 | 47 | "react-scripts": "5.0.1", |
48 | 48 | "redux-mock-store": "1.5.5", |
49 | | - "@typescript-eslint/eslint-plugin": "8.33.0", |
50 | | - "@typescript-eslint/parser": "8.33.0", |
51 | | - "eslint": "9.27.0", |
| 49 | + "@typescript-eslint/eslint-plugin": "8.48.0", |
| 50 | + "@typescript-eslint/parser": "8.48.0", |
| 51 | + "eslint": "9.39.1", |
52 | 52 | "eslint-plugin-jsx-a11y": "6.10.2", |
53 | 53 | "eslint-plugin-react": "7.37.5", |
54 | | - "eslint-plugin-react-hooks": "5.2.0", |
55 | | - "ts-jest": "29.1.2", |
56 | | - "typescript": "5.8.2" |
| 54 | + "eslint-plugin-react-hooks": "7.0.1", |
| 55 | + "ts-jest": "29.4.5", |
| 56 | + "typescript": "5.9.3" |
57 | 57 | }, |
58 | 58 | "overrides": { |
59 | 59 | "chalk": "4.1.2", |
|
76 | 76 | ] |
77 | 77 | }, |
78 | 78 | "jest": { |
| 79 | + "moduleNameMapper": { |
| 80 | + "^react-router-dom": "<rootDir>/../../node_modules/react-router-dom/dist/index.js", |
| 81 | + "^react-router": "<rootDir>/../../node_modules/react-router/dist/production/index.js" |
| 82 | + }, |
79 | 83 | "transform": { |
80 | 84 | "^.+\\.[t|j]sx?$": "ts-jest" |
81 | 85 | }, |
82 | 86 | "transformIgnorePatterns": [ |
83 | | - "<rootDir>/node_modules/(?!axios|react-router-dom)/" |
| 87 | + "node_modules/(?!axios|react-router-dom|react-router)/" |
84 | 88 | ] |
85 | 89 | } |
86 | 90 | } |
0 commit comments