![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together. Updates `react` from 17.0.2 to 18.2.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react) Updates `react-dom` from 17.0.2 to 18.2.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react-dom) Updates `@types/react` from 17.0.45 to 18.0.15 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) --- updated-dependencies: - dependency-name: react dependency-type: direct:production update-type: version-update:semver-major - dependency-name: react-dom dependency-type: direct:production update-type: version-update:semver-major - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "remix-template-remix",
|
|
"private": true,
|
|
"description": "",
|
|
"license": "",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "npm run build:css && remix build",
|
|
"build:css": "tailwindcss -o ./app/styles.css",
|
|
"dev": "concurrently -p \"[{name}]\" -n \"tailwind,remix\" -c \"yellow.bold,red.bold\" \"npm:dev:css\" \"npm:dev:remix\"",
|
|
"dev:remix": "cross-env NODE_ENV=development remix dev",
|
|
"dev:css": "tailwindcss -o ./app/styles.css --watch",
|
|
"start": "remix-serve build"
|
|
},
|
|
"dependencies": {
|
|
"@remix-run/node": "^1.6.3",
|
|
"@remix-run/react": "^1.6.7",
|
|
"@remix-run/serve": "^1.6.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@remix-run/dev": "^1.6.3",
|
|
"@remix-run/eslint-config": "^1.6.7",
|
|
"@types/react": "^18.0.17",
|
|
"@types/react-dom": "^17.0.9",
|
|
"autoprefixer": "^10.4.7",
|
|
"concurrently": "^7.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.19.0",
|
|
"nodemon": "^2.0.18",
|
|
"postcss": "^8.4.13",
|
|
"tailwindcss": "^3.1.4",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
}
|
|
}
|