aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-09 15:12:50 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-09 15:12:50 -0400
commit9ac6e1ddef7a1a9f277b9736fee08d97247adab2 (patch)
treeb2b5ce4599514ba744744ba3f0d6f64de7c2602e /package.json
parent102324996e227e1e9bf70a1641afb7b438d56276 (diff)
refactor: Remove NextJS from project
Diffstat (limited to 'package.json')
-rw-r--r--package.json63
1 files changed, 40 insertions, 23 deletions
diff --git a/package.json b/package.json
index 55322ac..96facd6 100644
--- a/package.json
+++ b/package.json
@@ -1,32 +1,49 @@
{
- "name": "helping-hands",
+ "name": "react-test",
"version": "0.1.0",
"private": true,
- "scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start"
- },
"dependencies": {
- "@emotion/css": "^11.10.6",
- "@emotion/react": "^11.10.6",
- "@emotion/server": "^11.10.0",
- "@emotion/styled": "^11.10.6",
- "@headlessui/react": "^1.7.14",
- "@heroicons/react": "^2.0.17",
+ "@headlessui/react": "^1.7.18",
+ "@heroicons/react": "^2.1.3",
"@tailwindcss/aspect-ratio": "^0.4.2",
- "dotenv": "^16.4.5",
- "next": "^13.3.1",
- "next-auth": "^4.24.7",
- "next-themes": "^0.2.1",
- "react": "^18",
- "react-dom": "^18",
- "react-hook-form": "^7.43.9"
+ "@testing-library/jest-dom": "^5.17.0",
+ "@testing-library/react": "^13.4.0",
+ "@testing-library/user-event": "^13.5.0",
+ "autoprefixer": "^9.8.6",
+ "next": "^14.1.4",
+ "postcss": "^8.4.38",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-hook-form": "^7.51.2",
+ "react-router-dom": "^6.22.3",
+ "react-scripts": "^5.0.1",
+ "web-vitals": "^2.1.4"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "eject": "react-scripts eject"
+ },
+ "eslintConfig": {
+ "extends": [
+ "react-app",
+ "react-app/jest"
+ ]
+ },
+ "browserslist": {
+ "production": [
+ ">0.2%",
+ "not dead",
+ "not op_mini all"
+ ],
+ "development": [
+ "last 1 chrome version",
+ "last 1 firefox version",
+ "last 1 safari version"
+ ]
},
"devDependencies": {
- "autoprefixer": "^10.4.14",
- "eslint-config-prettier": "^8.8.0",
- "postcss": "^8.4.23",
- "tailwindcss": "^3.3.1"
+ "tailwindcss": "^3.4.3"
}
}