theia/package.json

67 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2024-03-24 05:22:33 +01:00
{
"name": "vite-template-redux",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type-check": "tsc --noEmit",
2024-05-09 21:20:55 +02:00
"prepare": "ts-patch install && typia patch",
"postinstall": "patch-package"
2024-03-24 05:22:33 +01:00
},
"dependencies": {
2024-04-04 08:46:10 +02:00
"@redux-devtools/extension": "^3.3.0",
2024-03-24 05:22:33 +01:00
"@reduxjs/toolkit": "^2.0.1",
2024-04-25 06:20:54 +02:00
"csstype": "^3.1.3",
2024-03-24 05:22:33 +01:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-04-10 08:13:36 +02:00
"react-grid-layout": "^1.4.4",
2024-04-10 22:26:31 +02:00
"react-icons": "^5.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.23.0",
2024-05-08 05:59:32 +02:00
"react-timer-hook": "^3.0.7",
2024-05-03 07:55:50 +02:00
"redux-state-sync": "^3.1.4",
"typia": "^5.5.10",
2024-04-23 07:45:30 +02:00
"uuid": "^9.0.1",
"ws": "^8.16.0"
2024-03-24 05:22:33 +01:00
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
2024-04-10 08:13:36 +02:00
"@types/react-grid-layout": "^1.3.5",
2024-05-03 07:55:50 +02:00
"@types/redux-state-sync": "^3.1.10",
"@types/uuid": "^9.0.8",
2024-04-23 07:45:30 +02:00
"@types/ws": "^8.5.10",
2024-03-24 05:22:33 +01:00
"@vitejs/plugin-react": "^4.2.1",
2024-04-04 22:28:58 +02:00
"autoprefixer": "^10.4.19",
"csstype": "^3.1.3",
"eslint": "^8.57.0",
2024-03-24 05:22:33 +01:00
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^23.2.0",
2024-05-09 21:20:55 +02:00
"patch-package": "^8.0.0",
2024-04-04 22:28:58 +02:00
"postcss": "^8.4.38",
2024-03-24 05:22:33 +01:00
"prettier": "^3.2.1",
2024-04-04 22:28:58 +02:00
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.4.2",
2024-05-10 15:56:29 +02:00
"vite": "^5.2.11",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-eslint": "^1.8.1",
2024-03-24 05:22:33 +01:00
"vitest": "^1.2.0"
}
}