Skip to content

Commit

Permalink
fix(app-platform): upgrade platform tools to use vite and react 18
Browse files Browse the repository at this point in the history
  • Loading branch information
kabaros committed Oct 29, 2024
1 parent 44935c7 commit 068a461
Show file tree
Hide file tree
Showing 3 changed files with 877 additions and 135 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![React 18](https://img.shields.io/badge/react-18-blue)
[![codecov](https://codecov.io/gh/dhis2/maintenance-app-beta/graph/badge.svg?token=Z62Z57XE21)](https://codecov.io/gh/dhis2/maintenance-app-beta)

# Maintenance app
Expand Down
116 changes: 58 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
{
"name": "maintenance-app",
"version": "0.8.0",
"description": "",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build": "d2-app-scripts build",
"start": "d2-app-scripts start",
"test": "d2-app-scripts test",
"deploy": "d2-app-scripts deploy",
"lint": "yarn d2-style check",
"lint:staged": "yarn lint --staged",
"format": "yarn d2-style apply",
"format:staged": "yarn format --staged",
"check-types": "tsc --noemit",
"cypress:open": "REACT_APP_NODE_ENV=test yarn cypress open",
"cypress:run": "REACT_APP_NODE_ENV=test yarn cypress run",
"postinstall": "yarn d2-style install"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^12.0.0-alpha.19",
"@dhis2/cli-style": "^10.7.4",
"@dhis2/cypress-commands": "^10.0.3",
"@dhis2/cypress-plugins": "^10.0.3",
"@faker-js/faker": "^8.4.1",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"cypress": "^13.13.3",
"eslint": "^8",
"typescript": "^5.5.4",
"whatwg-fetch": "^3.6.17"
},
"dependencies": {
"@dhis2/app-runtime": "^3.9.3",
"@dhis2/multi-calendar-dates": "^2.0.0-alpha.5",
"@dhis2/ui": "^9.11.8",
"@tanstack/react-table": "^8.16.0",
"@types/lodash": "^4.14.198",
"lodash": "^4.17.21",
"package.json": "^2.0.1",
"react-color": "^2.19.3",
"react-error-boundary": "^4.0.11",
"react-final-form": "^6.5.9",
"react-router-dom": "^6.26.1",
"use-debounce": "^10.0.3",
"use-query-params": "^2.2.1",
"zod": "^3.22.2",
"zustand": "^4.4.0"
},
"resolutions": {
"eslint": "^8",
"@dhis2/multi-calendar-dates": "^2.0.0-alpha.5"
}
"name": "maintenance-app",
"version": "0.8.0",
"description": "",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build": "d2-app-scripts build",
"start": "d2-app-scripts start",
"test": "d2-app-scripts test",
"deploy": "d2-app-scripts deploy",
"lint": "yarn d2-style check",
"lint:staged": "yarn lint --staged",
"format": "yarn d2-style apply",
"format:staged": "yarn format --staged",
"check-types": "tsc --noemit",
"cypress:open": "REACT_APP_NODE_ENV=test yarn cypress open",
"cypress:run": "REACT_APP_NODE_ENV=test yarn cypress run",
"postinstall": "yarn d2-style install"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^12.0.0-alpha.20",
"@dhis2/cli-style": "^10.7.5",
"@dhis2/cypress-commands": "^10.0.3",
"@dhis2/cypress-plugins": "^10.0.3",
"@faker-js/faker": "^8.4.1",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"cypress": "^13.13.3",
"eslint": "^8",
"typescript": "^5.5.4",
"whatwg-fetch": "^3.6.17"
},
"dependencies": {
"@dhis2/app-runtime": "^3.9.3",
"@dhis2/multi-calendar-dates": "^2.0.0-alpha.5",
"@dhis2/ui": "^10.0.0-alpha.5",
"@tanstack/react-table": "^8.16.0",
"@types/lodash": "^4.14.198",
"lodash": "^4.17.21",
"package.json": "^2.0.1",
"react-color": "^2.19.3",
"react-error-boundary": "^4.0.11",
"react-final-form": "^6.5.9",
"react-router-dom": "^6.26.1",
"use-debounce": "^10.0.3",
"use-query-params": "^2.2.1",
"zod": "^3.22.2",
"zustand": "^4.4.0"
},
"resolutions": {
"eslint": "^8",
"@dhis2/multi-calendar-dates": "^2.0.0-alpha.5"
}
}
Loading

0 comments on commit 068a461

Please sign in to comment.