|
1 | 1 | {
|
2 |
| - "name": "monk-test-app", |
| 2 | + "name": "monk-demo-app", |
3 | 3 | "version": "4.0.0",
|
4 | 4 | "license": "BSD-3-Clause-Clear",
|
5 | 5 | "packageManager": "yarn@3.2.4",
|
6 | 6 | "description": "MonkJs test app with react and typescript",
|
7 | 7 | "author": "monkvision",
|
8 | 8 | "private": true,
|
9 | 9 | "scripts": {
|
10 |
| - "start": "HTTPS=true react-scripts start", |
| 10 | + "start": "react-scripts start", |
11 | 11 | "build": "react-scripts build",
|
12 |
| - "test": "react-scripts test --no-watch --no-watchAll --passWithNoTests", |
| 12 | + "test": "jest", |
| 13 | + "test:coverage": "jest --coverage", |
| 14 | + "analyze": "source-map-explorer 'build/static/js/*.js'", |
13 | 15 | "eject": "react-scripts eject",
|
14 | 16 | "prettier": "prettier --check ./src",
|
15 | 17 | "prettier:fix": "prettier --write ./src",
|
|
19 | 21 | "lint:fix": "yarn run prettier:fix && yarn run eslint:fix"
|
20 | 22 | },
|
21 | 23 | "dependencies": {
|
22 |
| - "@monkvision/camera-web": "4.0.0", |
| 24 | + "@auth0/auth0-react": "^2.2.4", |
23 | 25 | "@monkvision/common": "4.0.0",
|
24 | 26 | "@monkvision/common-ui-web": "4.0.0",
|
25 | 27 | "@monkvision/inspection-capture-web": "4.0.0",
|
26 | 28 | "@monkvision/monitoring": "4.0.0",
|
| 29 | + "@monkvision/network": "4.0.0", |
27 | 30 | "@monkvision/sentry": "4.0.0",
|
28 | 31 | "@monkvision/sights": "4.0.0",
|
29 | 32 | "@monkvision/types": "4.0.0",
|
| 33 | + "@types/babel__core": "^7", |
| 34 | + "@types/jest": "^27.5.2", |
| 35 | + "@types/node": "^16.18.18", |
| 36 | + "@types/react": "^17.0.2", |
| 37 | + "@types/react-dom": "^17.0.2", |
| 38 | + "@types/react-router-dom": "^5.3.3", |
| 39 | + "@types/sort-by": "^1", |
30 | 40 | "axios": "^1.5.0",
|
31 | 41 | "i18next": "^23.4.5",
|
32 | 42 | "i18next-browser-languagedetector": "^7.1.0",
|
33 | 43 | "jest-watch-typeahead": "^2.2.2",
|
| 44 | + "localforage": "^1.10.0", |
| 45 | + "match-sorter": "^6.3.4", |
34 | 46 | "react": "^17.0.2",
|
35 | 47 | "react-dom": "^17.0.2",
|
36 | 48 | "react-i18next": "^13.2.0",
|
| 49 | + "react-router-dom": "^6.22.3", |
37 | 50 | "react-scripts": "5.0.1",
|
| 51 | + "sort-by": "^1.2.0", |
| 52 | + "source-map-explorer": "^2.5.3", |
38 | 53 | "typescript": "^4.9.5",
|
39 | 54 | "web-vitals": "^2.1.4"
|
40 | 55 | },
|
41 | 56 | "devDependencies": {
|
42 | 57 | "@babel/core": "^7.22.9",
|
| 58 | + "@monkvision/eslint-config-base": "4.0.0", |
| 59 | + "@monkvision/eslint-config-typescript": "4.0.0", |
| 60 | + "@monkvision/eslint-config-typescript-react": "4.0.0", |
| 61 | + "@monkvision/jest-config": "4.0.0", |
| 62 | + "@monkvision/prettier-config": "4.0.0", |
| 63 | + "@monkvision/test-utils": "4.0.0", |
| 64 | + "@monkvision/typescript-config": "4.0.0", |
43 | 65 | "@testing-library/dom": "^8.20.0",
|
44 | 66 | "@testing-library/jest-dom": "^5.16.5",
|
45 | 67 | "@testing-library/react": "^12.1.5",
|
46 | 68 | "@testing-library/react-hooks": "^8.0.1",
|
47 | 69 | "@testing-library/user-event": "^12.1.5",
|
48 |
| - "@types/babel__core": "^7", |
49 |
| - "@types/jest": "^27.5.2", |
50 |
| - "@types/node": "^16.18.18", |
51 |
| - "@types/react": "^17.0.2", |
52 |
| - "@types/react-dom": "^17.0.2", |
53 |
| - "eslint": "^8.29.0", |
54 |
| - "eslint-plugin-jsx-a11y": "^6.7.1", |
55 |
| - "eslint-plugin-react": "^7.33.1", |
56 |
| - "eslint-plugin-react-hooks": "^4.6.0", |
57 |
| - "jest": "^29.3.1", |
58 |
| - "prettier": "^2.7.1", |
59 |
| - "regexpp": "^3.2.0", |
60 |
| - "ts-jest": "^29.0.3" |
61 |
| - }, |
62 |
| - "peerDependencies": { |
63 | 70 | "@typescript-eslint/eslint-plugin": "^5.43.0",
|
64 | 71 | "@typescript-eslint/parser": "^5.43.0",
|
| 72 | + "eslint": "^8.29.0", |
65 | 73 | "eslint-config-airbnb-base": "^15.0.0",
|
66 | 74 | "eslint-config-prettier": "^8.5.0",
|
67 | 75 | "eslint-formatter-pretty": "^4.1.0",
|
|
73 | 81 | "eslint-plugin-promise": "^6.1.1",
|
74 | 82 | "eslint-plugin-react": "^7.27.1",
|
75 | 83 | "eslint-plugin-react-hooks": "^4.3.0",
|
76 |
| - "eslint-utils": "^3.0.0" |
| 84 | + "eslint-utils": "^3.0.0", |
| 85 | + "jest": "^29.3.1", |
| 86 | + "prettier": "^2.7.1", |
| 87 | + "regexpp": "^3.2.0", |
| 88 | + "ts-jest": "^29.0.3" |
77 | 89 | },
|
78 | 90 | "prettier": "@monkvision/prettier-config",
|
79 | 91 | "browserslist": {
|
|
0 commit comments